Skip to content

Commit 07de009

Browse files
committed
Fix typo in TextTransform
1 parent 5222f07 commit 07de009

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

java/src/processing/mode/java/pdex/TextTransform.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
import processing.core.PApplet;
1212

13-
import static java.awt.SystemColor.text;
14-
1513

1614
public class TextTransform {
1715

@@ -209,7 +207,7 @@ public String toString() {
209207
return "Edit{" +
210208
"from=" + fromOffset + ":" + fromLength +
211209
", to=" + toOffset + ":" + toLength +
212-
((text != null) ? (", text='" + outputText + '\'') : "") +
210+
((outputText != null) ? (", text='" + outputText + '\'') : "") +
213211
'}';
214212
}
215213
}

0 commit comments

Comments
 (0)