Remove redundant Arrays.asList call

This commit is contained in:
Brady 2019-04-21 17:05:33 -05:00
parent 5da14fcb3f
commit 794a761243
No known key found for this signature in database
GPG Key ID: 73A788379A197567

View File

@ -153,9 +153,9 @@ public final class Settings {
/** /**
* Blocks that Baritone will attempt to avoid (Used in avoidance) * Blocks that Baritone will attempt to avoid (Used in avoidance)
*/ */
public final Setting<List<Block>> blocksToAvoid = new Setting<>(new ArrayList<>(Arrays.asList( public final Setting<List<Block>> blocksToAvoid = new Setting<>(new ArrayList<>(
// Leave Empty by Default // Leave Empty by Default
))); ));
/** /**
* Enables some more advanced vine features. They're honestly just gimmicks and won't ever be needed in real * Enables some more advanced vine features. They're honestly just gimmicks and won't ever be needed in real