can we please change a small line of code here?
JStylerObj.java
public void escape(String s, Appendable sb) {
try {
for (int i = 0; i < s.length(); i++) {
}
}
}
can we replace s.lenght() with int l = s.length() and use this var?
i think that there will be a little improve of performance, will avoid the
continuous call to an external object method
Original issue reported on code.google.com by ramarr...@gmail.com on 28 Nov 2012 at 1:27
Original issue reported on code.google.com by
ramarr...@gmail.com
on 28 Nov 2012 at 1:27