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/WebUndefined.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebUndefined.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebUndefined.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebUndefined.java
index 5dc27de4bb..65da9bcb30 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebUndefined.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebUndefined.java
@@ -19,7 +19,7 @@ public WebUndefined() {
super();
}
-public WebUndefined(long /*int*/ id) {
+public WebUndefined(long id) {
super(id);
}
@@ -28,7 +28,7 @@ public WebUndefined(id id) {
}
public static WebUndefined undefined() {
- long /*int*/ result = OS.objc_msgSend(OS.class_WebUndefined, OS.sel_undefined);
+ long result = OS.objc_msgSend(OS.class_WebUndefined, OS.sel_undefined);
return result != 0 ? new WebUndefined(result) : null;
}

Back to the top