Remove unnecessary variable assignment
[Sone.git] / src / main / java / net / pterodactylus / sone / text / SoneTextParser.java
index f628279..62fc7dc 100644 (file)
@@ -168,7 +168,6 @@ public class SoneTextParser implements Parser<SoneTextParserContext> {
                                        if (next > 0) {
                                                parts.add(new PlainTextPart(line.substring(0, next)));
                                                line = line.substring(next);
-                                               next = 0;
                                        }
                                        lineComplete = false;