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

Method dbgCall

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

Source from the content-addressed store, hash-verified

1018 }
1019
1020 private static void dbgCall(boolean isStatic, String callType, ReflectorMethod refMethod, Object[] params, Object retVal)
1021 {
1022 String s = refMethod.getTargetMethod().getDeclaringClass().getName();
1023 String s1 = refMethod.getTargetMethod().getName();
1024 String s2 = "";
1025
1026 if (isStatic)
1027 {
1028 s2 = " static";
1029 }
1030
1031 Log.dbg(callType + s2 + " " + s + "." + s1 + "(" + ArrayUtils.arrayToString(params) + ") => " + retVal);
1032 }
1033
1034 private static void dbgCallVoid(boolean isStatic, String callType, ReflectorMethod refMethod, Object[] params)
1035 {

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