Dead code removed as this cannot be null in Java.
authorAlexander Smorkalov <alexander.smorkalov@itseez.com>
Thu, 13 Feb 2014 14:17:47 +0000 (18:17 +0400)
committerAlexander Smorkalov <alexander.smorkalov@itseez.com>
Thu, 13 Feb 2014 14:17:47 +0000 (18:17 +0400)
modules/java/generator/src/java/core+TermCriteria.java

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