Add StringMatcher#toString(); useful from a debugger.
This commit is contained in:
parent
f8669ed70a
commit
ff3492b062
|
@ -374,6 +374,12 @@ public abstract class StrMatcher {
|
|||
}
|
||||
return len;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return super.toString() + ' ' + Arrays.toString(chars);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue