Skip to content

Commit 1f4a1b0

Browse files
committed
Java debug comment out
1 parent 2c63a5d commit 1f4a1b0

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

sources/net.sf.j2s.java.core/src/java/awt/font/TextMeasurer.java

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -100,20 +100,20 @@ public final class TextMeasurer implements Cloneable {
100100
// Number of lines to format to.
101101
private static float EST_LINES = (float) 2.1;
102102

103-
/*
104-
static {
105-
String s = System.getProperty("estLines");
106-
if (s != null) {
107-
try {
108-
Float f = new Float(s);
109-
EST_LINES = f.floatValue();
110-
}
111-
catch(NumberFormatException e) {
112-
}
113-
}
114-
//System.out.println("EST_LINES="+EST_LINES);
115-
}
116-
*/
103+
104+
// static {
105+
// String s = System.getProperty("estLines");
106+
// if (s != null) {
107+
// try {
108+
// Float f = new Float(s);
109+
// EST_LINES = f.floatValue();
110+
// }
111+
// catch(NumberFormatException e) {
112+
// }
113+
// }
114+
// //System.out.println("EST_LINES="+EST_LINES);
115+
// }
116+
117117

118118
private FontRenderContext fFrc;
119119

0 commit comments

Comments
 (0)