Remove the use of + when using StringBuilder (1 of 2)
Change-Id: I010b487de26c5a16b3dfda41130d7ea91b1587e8
This commit is contained in:
@@ -48,7 +48,8 @@ public class ServerPlannedIFrameLinker extends AbstractLinker {
|
||||
}
|
||||
|
||||
for (CompilationResult r : artifacts.find(CompilationResult.class)) {
|
||||
table.append(r.getStrongName() + "\n");
|
||||
table.append(r.getStrongName());
|
||||
table.append("\n");
|
||||
for (SortedMap<SelectionProperty, String> p : r.getPropertyMap()) {
|
||||
for (Map.Entry<SelectionProperty, String> e : p.entrySet()) {
|
||||
table.append(" ");
|
||||
|
||||
@@ -100,8 +100,8 @@ public class Permutation {
|
||||
// Prevents mixed mode security in IE6/7.
|
||||
s.append("f.src=\"javascript:''\";");
|
||||
s.append("f.id=n;");
|
||||
s.append("f.style.cssText"
|
||||
+ "='position:absolute;width:0;height:0;border:none';");
|
||||
s.append("f.style.cssText)")
|
||||
.append("='position:absolute;width:0;height:0;border:none';");
|
||||
s.append("f.tabIndex=-1;");
|
||||
s.append("d.body.appendChild(f);");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user