MCPcopy Create free account
hub / github.com/DGVPSH/SlackOpen / dbgFieldValue

Method dbgFieldValue

src/main/java/net/optifine/reflect/Reflector.java:1048–1060  ·  view source on GitHub ↗
(boolean isStatic, String accessType, ReflectorField refField, Object val)

Source from the content-addressed store, hash-verified

1046 }
1047
1048 private static void dbgFieldValue(boolean isStatic, String accessType, ReflectorField refField, Object val)
1049 {
1050 String s = refField.getTargetField().getDeclaringClass().getName();
1051 String s1 = refField.getTargetField().getName();
1052 String s2 = "";
1053
1054 if (isStatic)
1055 {
1056 s2 = " static";
1057 }
1058
1059 Log.dbg(accessType + s2 + " " + s + "." + s1 + " => " + val);
1060 }
1061
1062 private static void handleException(Throwable e, Object obj, ReflectorMethod refMethod, Object[] params)
1063 {

Callers

nothing calls this directly

Calls 3

dbgMethod · 0.95
getTargetFieldMethod · 0.80
getNameMethod · 0.65

Tested by

no test coverage detected