mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-05 20:36:42 +00:00
Made a few schematic related fixes. Made the deprecation error more obvious.
This commit is contained in:
@ -57,7 +57,7 @@ public enum ClipboardFormat {
|
||||
|
||||
@Override
|
||||
public ClipboardWriter getWriter(OutputStream outputStream) throws IOException {
|
||||
throw new UnsupportedOperationException("This clipboard format is deprecated.");
|
||||
throw new IOException("This clipboard format no longer supports saving.");
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -85,7 +85,7 @@ public enum ClipboardFormat {
|
||||
*
|
||||
* @param aliases an array of aliases by which this format may be referred to
|
||||
*/
|
||||
private ClipboardFormat(String ... aliases) {
|
||||
ClipboardFormat(String... aliases) {
|
||||
this.aliases = aliases;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user