aboutsummaryrefslogtreecommitdiffstats
path: root/src/classes/com/sun/opengl/impl/NullWindow.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2008-06-26 08:52:58 +0000
committerSven Gothel <[email protected]>2008-06-26 08:52:58 +0000
commit3c73be50b6a5f983865bb7617739ce1370fb5566 (patch)
tree8cf2490bddfe56a2f9f27e32999a2948a4dd6936 /src/classes/com/sun/opengl/impl/NullWindow.java
parentf287efc004e6932cbb2efdf777798a381994ca48 (diff)
Unifying NativeWindow's getWindowHandle() and getSurfaceHandle() usage for all platforms.
On platform's where no distinction of window and surface handle exists, e.g. X11, the window handle is naturally returned by the default 'getSurfaceHandle()' implementation. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1696 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun/opengl/impl/NullWindow.java')
-rw-r--r--src/classes/com/sun/opengl/impl/NullWindow.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/classes/com/sun/opengl/impl/NullWindow.java b/src/classes/com/sun/opengl/impl/NullWindow.java
index da64c2538..e5c0b82ea 100644
--- a/src/classes/com/sun/opengl/impl/NullWindow.java
+++ b/src/classes/com/sun/opengl/impl/NullWindow.java
@@ -95,9 +95,6 @@ public class NullWindow implements NativeWindow {
public long getWindowHandle() {
return windowHandle;
}
- public void setWindowHandle(long handle) {
- windowHandle=handle;
- }
public long getSurfaceHandle() {
return surfaceHandle;
}