Dead code removed as this cannot be null in Java.

(cherry picked from commit dbe7634286)
This commit is contained in:
Alexander Smorkalov 2014-02-13 18:17:47 +04:00
parent aa82f921cc
commit ea51396731

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 + "}";
}
}