Skip to content

Commit 08d462e

Browse files
author
Mike Barkmin
committed
remove print statements
1 parent 54f1377 commit 08d462e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

resources/build.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,12 @@ source.repository=https://github.com/mikebarkmin/processing-library-scratch.git
131131
# This is used to compare different versions of the same Library, and check if
132132
# an update is available.
133133

134-
library.version=18
134+
library.version=19
135135

136136

137137
# The version as the user will see it.
138138

139-
library.prettyVersion=1.14.1
139+
library.prettyVersion=1.14.2
140140

141141

142142
# The min and max revision of Processing compatible with your Library.

src/eu/barkmin/processing/scratch/ScratchText.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,7 @@ public void draw() {
247247
} else {
248248
// get minimum width
249249
for (String l : lines) {
250-
System.out.println(l);
251250
width = Math.max(textBuffer.textWidth(l), width);
252-
System.out.println(width);
253251
}
254252
width = Math.min(width + 16, this.width);
255253
}

0 commit comments

Comments
 (0)