Mercurial > 510Connectbot
diff src/de/mud/terminal/vt320.java @ 112:77ac18bc1b2f
cleanup java formatting
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 18 Jun 2014 13:03:01 -0700 |
parents | 171e0a977544 |
children | 69333ca1563c |
line wrap: on
line diff
--- a/src/de/mud/terminal/vt320.java Wed Jun 18 13:00:19 2014 -0700 +++ b/src/de/mud/terminal/vt320.java Wed Jun 18 13:03:01 2014 -0700 @@ -72,7 +72,9 @@ // ignore line and column, just send the bytes to the host. int n = d.length; byte [] b = new byte [n]; - for (int i=0; i<n; i++) b[i] = (byte)(d[i] & 0x00ff); + + for (int i = 0; i < n; i++) b[i] = (byte)(d[i] & 0x00ff); + write(b); }