Provide `toString` for SafeExtendsClassMatcher

This commit is contained in:
Nikolay Martynov 2020-02-27 10:46:48 +01:00
parent 06b052c4d9
commit 5a17e57e99
1 changed files with 5 additions and 0 deletions

View File

@ -28,4 +28,9 @@ class SafeExtendsClassMatcher<T extends TypeDescription>
} }
return false; return false;
} }
@Override
public String toString() {
return "safeExtendsClass(" + matcher + ")";
}
} }