commit | 81470a5c3d52dec32d8c76e44a4f3310c9dc04b2 | [log] [tgz] |
---|---|---|
author | Sho SHIMIZU <sshimizu@us.fujitsu.com> | Fri Aug 12 17:24:55 2016 -0700 |
committer | Sho SHIMIZU <sshimizu@us.fujitsu.com> | Fri Aug 12 17:24:55 2016 -0700 |
tree | 15ee76fa8b72478551e4fe6f64a8d5a4f21b459c | |
parent | 19af19d12356445a88c8a8c4f4b85d5950af17bf [diff] |
Use StringBuilder instead of StringBuffer Change-Id: Ia8784f55ad04cc0da490e3c56f1ae4dae7463656
diff --git a/core/net/src/main/java/org/onosproject/net/flowobjective/impl/FlowObjectiveManager.java b/core/net/src/main/java/org/onosproject/net/flowobjective/impl/FlowObjectiveManager.java index 9c0aada..fb12735 100644 --- a/core/net/src/main/java/org/onosproject/net/flowobjective/impl/FlowObjectiveManager.java +++ b/core/net/src/main/java/org/onosproject/net/flowobjective/impl/FlowObjectiveManager.java
@@ -501,7 +501,7 @@ List<String> pendingNexts = new ArrayList<>(); for (Integer nextId : pendingForwards.keySet()) { Set<PendingNext> pnext = pendingForwards.get(nextId); - StringBuffer pend = new StringBuffer(); + StringBuilder pend = new StringBuilder(); pend.append("Next Id: ").append(Integer.toString(nextId)) .append(" :: "); for (PendingNext pn : pnext) {