MCPcopy Index your code
hub / github.com/BombusMod/BombusMod / getIntProperty

Method getIntProperty

src/main/java/Client/Config.java:752–758  ·  view source on GitHub ↗
(final String key, final int defvalue)

Source from the content-addressed store, hash-verified

750 }
751
752 public final int getIntProperty(final String key, final int defvalue) {
753 try {
754 return Integer.parseInt(key);
755 } catch (Exception e) {
756 }
757 return defvalue;
758 }
759
760 /*public final char getCharProperty(final String key, final char defvalue) {
761 try { return key.charAt(0); } catch (Exception e) { }

Callers 1

importDataMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected