Skip to content

Commit

Permalink
tmf: Fix non-externalized string warning in AbstractSelectTreeViewer2
Browse files Browse the repository at this point in the history
Fix the Eclipse warning [1] below in AbstractSelectTreeViewer2.

[1] "Non-externalized string literal; it should be followed by
//$NON-NLS-<n>$".

Change-Id: Ifc940a7b6f44de8cbe00049c6f740a36d9444557
Signed-off-by: Marco Miller <marco.miller@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/c/tracecompass/org.eclipse.tracecompass/+/201540
Tested-by: Trace Compass Bot <tracecompass-bot@eclipse.org>
Tested-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
Reviewed-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
  • Loading branch information
marco-miller committed Apr 27, 2023
1 parent 968ef61 commit c5327f0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -328,7 +328,7 @@ protected void contentChanged(ITmfTreeViewerEntry rootEntry) {
}

private void refreshTree(@NonNull FlowScopeLog parent) {
try (FlowScopeLog refresh = new FlowScopeLogBuilder(LOGGER, Level.FINE, getClass().getSimpleName() + "#treeRefresh()").setParentScope(parent).build()) {
try (FlowScopeLog refresh = new FlowScopeLogBuilder(LOGGER, Level.FINE, getClass().getSimpleName() + "#treeRefresh()").setParentScope(parent).build()) { //$NON-NLS-1$
getTreeViewer().refresh();
}
}
Expand Down

0 comments on commit c5327f0

Please sign in to comment.