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

Method dbgCallVoid

src/main/java/net/optifine/reflect/Reflector.java:1034–1046  ·  view source on GitHub ↗
(boolean isStatic, String callType, ReflectorMethod refMethod, Object[] params)

Source from the content-addressed store, hash-verified

1032 }
1033
1034 private static void dbgCallVoid(boolean isStatic, String callType, ReflectorMethod refMethod, Object[] params)
1035 {
1036 String s = refMethod.getTargetMethod().getDeclaringClass().getName();
1037 String s1 = refMethod.getTargetMethod().getName();
1038 String s2 = "";
1039
1040 if (isStatic)
1041 {
1042 s2 = " static";
1043 }
1044
1045 Log.dbg(callType + s2 + " " + s + "." + s1 + "(" + ArrayUtils.arrayToString(params) + ")");
1046 }
1047
1048 private static void dbgFieldValue(boolean isStatic, String accessType, ReflectorField refField, Object val)
1049 {

Callers

nothing calls this directly

Calls 4

dbgMethod · 0.95
arrayToStringMethod · 0.95
getTargetMethodMethod · 0.80
getNameMethod · 0.65

Tested by

no test coverage detected