We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5222f07 commit 07de009Copy full SHA for 07de009
1 file changed
java/src/processing/mode/java/pdex/TextTransform.java
@@ -10,8 +10,6 @@
10
11
import processing.core.PApplet;
12
13
-import static java.awt.SystemColor.text;
14
-
15
16
public class TextTransform {
17
@@ -209,7 +207,7 @@ public String toString() {
209
207
return "Edit{" +
210
208
"from=" + fromOffset + ":" + fromLength +
211
", to=" + toOffset + ":" + toLength +
212
- ((text != null) ? (", text='" + outputText + '\'') : "") +
+ ((outputText != null) ? (", text='" + outputText + '\'') : "") +
213
'}';
214
}
215
0 commit comments