system.out.println
Note to myself:
You should never use System.out.println in production code.. See the synchronized block out there.
public void println(String x) {
synchronized (this) {
print(x);
newLine();
}
}
ETTWU -- Enter To The World of Uysal Kara
Note to myself:
You should never use System.out.println in production code.. See the synchronized block out there.
public void println(String x) {
synchronized (this) {
print(x);
newLine();
}
}
Posted by
Uysal KARA
at
1:51 PM
1 comment:
indeed man.
Post a Comment