Well, I personally like the way it looks:

 this.myPackage = StringInterner.get().intern(
     (myPackage.length() == 0) ? "" : (myPackage + '.'));

becomes:

 this.myPackage =
     StringInterner.get().intern(
         (myPackage.length() == 0) ? "" : (myPackage + '.'));

This is going to cause a lot of churn...


http://gwt-code-reviews.appspot.com/1354803/show

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to