aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt/classes
diff options
context:
space:
mode:
Diffstat (limited to 'src/newt/classes')
-rw-r--r--src/newt/classes/com/jogamp/newt/ScreenMode.java10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/newt/classes/com/jogamp/newt/ScreenMode.java b/src/newt/classes/com/jogamp/newt/ScreenMode.java
index 414e2fb9c..1f12217bb 100644
--- a/src/newt/classes/com/jogamp/newt/ScreenMode.java
+++ b/src/newt/classes/com/jogamp/newt/ScreenMode.java
@@ -101,7 +101,7 @@ import com.jogamp.newt.util.MonitorMode;
* </pre>
*
*/
-public class ScreenMode implements Cloneable {
+public class ScreenMode {
/** zero rotation, compared to normal settings */
public static final int ROTATE_0 = 0;
@@ -134,14 +134,6 @@ public class ScreenMode implements Cloneable {
this.rotation = rotation;
}
- public Object clone() {
- try {
- return super.clone();
- } catch (CloneNotSupportedException ex) {
- throw new InternalError();
- }
- }
-
/** Returns the unrotated <code>MonitorMode</code> */
public final MonitorMode getMonitorMode() {
return monitorMode;