Skip to content

Commit

Permalink
iss1446: added information about the declaring class of the method
Browse files Browse the repository at this point in the history
  • Loading branch information
dmgcodevil committed Feb 24, 2017
1 parent cb2767f commit 943c10d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@ public static String getMethodInfo(Method m) {
info.append("Method signature:").append("\n");
info.append(m.toGenericString()).append("\n");

info.append("Declaring class:\n");
info.append(m.getDeclaringClass().getCanonicalName()).append("\n");

info.append("\nFlags:").append("\n");
info.append("Bridge=").append(m.isBridge()).append("\n");
info.append("Synthetic=").append(m.isSynthetic()).append("\n");
Expand Down

0 comments on commit 943c10d

Please sign in to comment.