Skip to content

Commit

Permalink
* flagged Strings as non-nls
Browse files Browse the repository at this point in the history
  • Loading branch information
jmesnil committed Mar 22, 2007
1 parent 0675c9f commit bfa7769
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -70,7 +70,7 @@ protected Point getInitialSize() {
return result;
}

@SuppressWarnings("unchecked")
@SuppressWarnings("unchecked") //$NON-NLS-1$
@Override
protected Control createDialogArea(Composite parent) {
Composite area = (Composite) super.createDialogArea(parent);
Expand All @@ -85,7 +85,7 @@ protected Control createDialogArea(Composite parent) {
.getMBeanServerConnection();
if (mbsc != null) {
try {
Set set = mbsc.queryNames(ObjectName.getInstance("*:*"), null);
Set set = mbsc.queryNames(ObjectName.getInstance("*:*"), null); //$NON-NLS-1$
List mbeans = new ArrayList();
Iterator iter = set.iterator();
while (iter.hasNext()) {
Expand Down

0 comments on commit bfa7769

Please sign in to comment.