diff options
author | Sven Gothel <[email protected]> | 2013-04-11 00:37:30 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-04-11 00:37:30 +0200 |
commit | 5502353eaed3ad1866f172a10935671116ed7c9a (patch) | |
tree | 6937150fdd7eef2223c0d6f50f40d0678cb3182e /src/java/com/jogamp/common/JogampRuntimeException.java | |
parent | d721e4f356d2cb272b0eb47829220a5b2b23c2dc (diff) |
IntBitfield: Add optimization path w/ int bitCount bitfield range. Replace '* 32' -> '<< 5', same for division.
Diffstat (limited to 'src/java/com/jogamp/common/JogampRuntimeException.java')
-rw-r--r-- | src/java/com/jogamp/common/JogampRuntimeException.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/java/com/jogamp/common/JogampRuntimeException.java b/src/java/com/jogamp/common/JogampRuntimeException.java index 8077390..1dd7519 100644 --- a/src/java/com/jogamp/common/JogampRuntimeException.java +++ b/src/java/com/jogamp/common/JogampRuntimeException.java @@ -31,6 +31,7 @@ package com.jogamp.common; /** A generic exception for Jogamp errors used throughout the binding as a substitute for {@link RuntimeException}. */ +@SuppressWarnings("serial") public class JogampRuntimeException extends RuntimeException { /** Constructs a JogampRuntimeException object. */ public JogampRuntimeException() { |