Fix typo in TextTransform

This commit is contained in:
Jakub Valtar
2016-05-06 19:58:04 +02:00
parent 8bc5fd2427
commit 88d0065d58

View File

@@ -10,8 +10,6 @@ import java.util.stream.Collectors;
import processing.core.PApplet;
import static java.awt.SystemColor.text;
public class TextTransform {
@@ -209,7 +207,7 @@ public class TextTransform {
return "Edit{" +
"from=" + fromOffset + ":" + fromLength +
", to=" + toOffset + ":" + toLength +
((text != null) ? (", text='" + outputText + '\'') : "") +
((outputText != null) ? (", text='" + outputText + '\'') : "") +
'}';
}
}