aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/audio/windows/waveout/Mixer.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-07-08 21:09:30 +0200
committerSven Gothel <[email protected]>2014-07-08 21:09:30 +0200
commita41db57df54863566b0e286cd100bbbc5518eb7f (patch)
treefb82077e79f54ba2fcf4c77b42458572fd9995eb /src/jogl/classes/com/jogamp/audio/windows/waveout/Mixer.java
parentb740161d456c059d1b51029c603ce144eb2b2d44 (diff)
Findbugs: Use <NumberType>.valueOf(..) instead of 'new <NumberType>(..)'
Diffstat (limited to 'src/jogl/classes/com/jogamp/audio/windows/waveout/Mixer.java')
-rw-r--r--src/jogl/classes/com/jogamp/audio/windows/waveout/Mixer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jogl/classes/com/jogamp/audio/windows/waveout/Mixer.java b/src/jogl/classes/com/jogamp/audio/windows/waveout/Mixer.java
index a84da723f..bbfe72b08 100644
--- a/src/jogl/classes/com/jogamp/audio/windows/waveout/Mixer.java
+++ b/src/jogl/classes/com/jogamp/audio/windows/waveout/Mixer.java
@@ -322,7 +322,7 @@ public class Mixer {
private static Map createdBuffers = new HashMap(); // Map Long, ByteBuffer
private static ByteBuffer newDirectByteBuffer(final long address, final long capacity) {
- final Long key = new Long(address);
+ final Long key = Long.valueOf(address);
ByteBuffer buf = (ByteBuffer) createdBuffers.get(key);
if (buf == null) {
buf = newDirectByteBufferImpl(address, capacity);
@@ -351,9 +351,9 @@ public class Mixer {
try {
return (ByteBuffer)
directByteBufferConstructor.newInstance(new Object[] {
- new Integer((int) capacity),
+ Integer.valueOf((int) capacity),
null,
- new Integer((int) address)
+ Integer.valueOf((int) address)
});
} catch (final Exception e) {
e.printStackTrace();