YES I DID IT
This commit is contained in:
parent
8fc80a285c
commit
544ae24b64
@ -36,8 +36,7 @@ public interface Helper {
|
||||
/**
|
||||
* Instance of {@link Helper}. Used for static-context reference.
|
||||
*/
|
||||
Helper HELPER = new Helper() {
|
||||
};
|
||||
Helper HELPER = new Helper() {};
|
||||
|
||||
static ITextComponent getPrefix() {
|
||||
return new TextComponentString("") {{
|
||||
|
@ -52,8 +52,7 @@ public interface IPlayerContext {
|
||||
if (world().getBlockState(feet).getBlock() instanceof BlockSlab) {
|
||||
return feet.up();
|
||||
}
|
||||
} catch (NullPointerException ignored) {
|
||||
}
|
||||
} catch (NullPointerException ignored) {}
|
||||
|
||||
return feet;
|
||||
}
|
||||
|
@ -112,8 +112,7 @@ public class BaritoneChatControl implements Helper, AbstractGameEventListener {
|
||||
} else if (msg.trim().equalsIgnoreCase("orderpizza")) {
|
||||
try {
|
||||
((Lol) mc.currentScreen).openLink(new URI("https://www.dominos.com/en/pages/order/"));
|
||||
} catch (NullPointerException | URISyntaxException ignored) {
|
||||
}
|
||||
} catch (NullPointerException | URISyntaxException ignored) {}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
@ -48,8 +48,7 @@ public class PauseResumeCommands {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onLostControl() {
|
||||
}
|
||||
public void onLostControl() {}
|
||||
|
||||
@Override
|
||||
public double priority() {
|
||||
|
@ -266,8 +266,7 @@ public class ArgConsumer {
|
||||
return datatype.getConstructor().newInstance().tabComplete(this);
|
||||
} catch (InstantiationException | IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
|
||||
e.printStackTrace();
|
||||
} catch (CommandException ignored) {
|
||||
}
|
||||
} catch (CommandException ignored) {}
|
||||
|
||||
return Stream.empty();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user