Dead code removed as this cannot be null in Java.

This commit is contained in:
Alexander Smorkalov 2014-02-13 18:17:47 +04:00
parent b8d8b0568c
commit dbe7634286

View File

@ -87,7 +87,6 @@ public class TermCriteria {
@Override
public String toString() {
if (this == null) return "null";
return "{ type: " + type + ", maxCount: " + maxCount + ", epsilon: " + epsilon + "}";
}
}