Code cleanup and formatting.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / textEditorComponent / Character.java
index f22995f..b7d96af 100644 (file)
@@ -19,7 +19,7 @@ public class Character {
         this.value = value;
     }
 
-    boolean isEmpty() {
-        return value == ' ';
+    boolean hasValue() {
+        return value != ' ';
     }
 }