Checkstyle fix

This commit is contained in:
James Munson
2019-06-12 02:02:01 -07:00
parent ba83bf11e9
commit a0046876be

View File

@@ -284,13 +284,16 @@ public interface RuneLiteConfig extends Config
return 35;
}
@Range(max=100, min=0)
@Range( max = 100, min = 0 )
@ConfigItem(
keyName="volume",
name="Runelite Volume",
description="Sets the volume of custom Runelite sounds (not the client sounds)",
position=43
keyName = "volume",
name = "Runelite Volume",
description = "Sets the volume of custom Runelite sounds (not the client sounds)",
position = 43
)
default int volume() { return 100; }
default int volume()
{
return 100;
}
}