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/NSEnumerator.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSEnumerator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSEnumerator.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSEnumerator.java
index fbf74fa756..99b9aea4c5 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSEnumerator.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSEnumerator.java
@@ -19,7 +19,7 @@ public NSEnumerator() {
super();
}
-public NSEnumerator(long /*int*/ id) {
+public NSEnumerator(long id) {
super(id);
}
@@ -28,7 +28,7 @@ public NSEnumerator(id id) {
}
public id nextObject() {
- long /*int*/ result = OS.objc_msgSend(this.id, OS.sel_nextObject);
+ long result = OS.objc_msgSend(this.id, OS.sel_nextObject);
return result != 0 ? new id(result) : null;
}

Back to the top