fix codestyle

This commit is contained in:
Orinion 2019-08-30 11:54:04 +02:00
parent 6a181abdcb
commit 6327c8492f
1 changed files with 2 additions and 3 deletions

View File

@ -576,10 +576,9 @@ public class ExampleBaritoneControl implements Helper, AbstractGameEventListener
}
name = parts[0];
}
for (IWaypoint.Tag tag : IWaypoint.Tag.values())
{
for (IWaypoint.Tag tag : IWaypoint.Tag.values()) {
if (tag.name().equalsIgnoreCase(name)) {
logDirect("Unable to use Tags as name. Tags are: " + Arrays.asList(IWaypoint.Tag.values()).toString().toLowerCase());
logDirect("Unable to use tags as name. Tags are: " + Arrays.asList(IWaypoint.Tag.values()).toString().toLowerCase());
return true;
}
}