Skip to content

Commit

Permalink
access package scope
Browse files Browse the repository at this point in the history
  • Loading branch information
SmartDengg committed Jan 14, 2019
1 parent 6cf5438 commit de8892c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class MethodDelegate {
this.desc = desc;
}

public boolean match(int access, String name, String desc) {
boolean match(int access, String name, String desc) {
return this.access == access &&
Objects.equals(this.name, name) &&
Objects.equals(this.desc, desc);
Expand Down

0 comments on commit de8892c

Please sign in to comment.