修复一个编译警告

This commit is contained in:
wusheng 2016-06-08 16:06:30 +08:00
parent f548b014d8
commit 8b9e741ac6
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ public abstract class MethodMatcher {
public enum Modifier {
Public, Default, Private, Protected;
private ElementMatcher elementMatcher() {
private ElementMatcher.Junction<MethodDescription> elementMatcher() {
switch (this) {
case Private: {
return isPrivate();