Checkstyle fix

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

View File

@@ -291,6 +291,9 @@ public interface RuneLiteConfig extends Config
description = "Sets the volume of custom Runelite sounds (not the client sounds)", description = "Sets the volume of custom Runelite sounds (not the client sounds)",
position = 43 position = 43
) )
default int volume() { return 100; } default int volume()
{
return 100;
}
} }