Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableSet.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableSet.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableSet.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableSet.java
index 374ff0482f..08e59aad57 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableSet.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableSet.java
@@ -19,7 +19,7 @@ public NSMutableSet() {
super();
}
-public NSMutableSet(long /*int*/ id) {
+public NSMutableSet(long id) {
super(id);
}
@@ -32,7 +32,7 @@ public void addObjectsFromArray(NSArray array) {
}
public static NSSet set() {
- long /*int*/ result = OS.objc_msgSend(OS.class_NSMutableSet, OS.sel_set);
+ long result = OS.objc_msgSend(OS.class_NSMutableSet, OS.sel_set);
return result != 0 ? new NSMutableSet(result) : null;
}

Back to the top