mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
parent
f30a050bfd
commit
7aefaf37ed
|
@ -208,12 +208,12 @@ public class TPrintStream extends TFilterOutputStream {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void println(char c) {
|
public void println(char c) {
|
||||||
sb.append(c);
|
sb.append(c).append('\n');
|
||||||
printSB();
|
printSB();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void println(boolean b) {
|
public void println(boolean b) {
|
||||||
sb.append(b);
|
sb.append(b).append('\n');
|
||||||
printSB();
|
printSB();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user