Skip to content
Snippets Groups Projects
Commit 9a374c4b authored by Raphael GIRARDOT's avatar Raphael GIRARDOT
Browse files

Prefer using StringBuilder to using StringBuffer

parent 25770e6d
Branches
Tags
No related merge requests found
......@@ -251,7 +251,7 @@ public class MatrixViewer extends AbstractItemViewer<MatrixItem>
//
// private static String createTabName(final IKey itemKey) {
// StringBuffer buf = new StringBuffer();
// StringBuilder buf = new StringBuilder();
//
// if (itemKey instanceof CDMAKey) {
// String[] path = ((CDMAKey) itemKey).getPath();
......@@ -269,7 +269,7 @@ public class MatrixViewer extends AbstractItemViewer<MatrixItem>
// }
//
// private static String createTabToolTip(final IKey itemKey) {
// StringBuffer buf = new StringBuffer();
// StringBuilder buf = new StringBuilder();
//
// if (itemKey instanceof CDMAKey) {
// for (String node : ((CDMAKey) itemKey).getPath()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment