lint
[fanfix.git] / src / jexer / tterminal / Sixel.java
index a4c00fc67f1da1ca38847b9bb5dad63daac5e006..5768a0f0ed0cbeb4fc3d040e6645aeebe3ae666d 100644 (file)
@@ -574,10 +574,10 @@ public class Sixel {
         case REPEAT:
             if ((ch >= '0') && (ch <= '9')) {
                 if (repeatCount == -1) {
-                    repeatCount = (int) (ch - '0');
+                    repeatCount = (ch - '0');
                 } else {
                     repeatCount *= 10;
-                    repeatCount += (int) (ch - '0');
+                    repeatCount += (ch - '0');
                 }
             }
             return;