diff options
author | Sven Gothel <[email protected]> | 2011-02-09 03:52:20 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-02-09 03:52:20 +0100 |
commit | eafc9a55cd9ba31709bc45aebd063ff8c2c7d781 (patch) | |
tree | 42a698a104b2fcdb8b2db663eab67265bbb48445 /src/java/com/jogamp/openal | |
parent | 9d86a3325899606693ec1d9c42be64dc9f33ac9a (diff) |
Move implementation private files from com.jogamp.<module>.impl. to jogamp.<module> (2/2) - edit files
- jogamp.openal -> jogamp.openal
This sorts implementation details from the top level, ie skipping the public 'com',
allowing a better seperation of public classes and implementation details
and also reduces strings.
This approach of public/private seperation is also used in the OpenJDK.
Diffstat (limited to 'src/java/com/jogamp/openal')
-rw-r--r-- | src/java/com/jogamp/openal/ALFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/openal/ALFactory.java b/src/java/com/jogamp/openal/ALFactory.java index e7ec774..4c114c8 100644 --- a/src/java/com/jogamp/openal/ALFactory.java +++ b/src/java/com/jogamp/openal/ALFactory.java @@ -35,7 +35,7 @@ package com.jogamp.openal; import com.jogamp.openal.AL; import com.jogamp.openal.ALC; -import com.jogamp.openal.impl.*; +import jogamp.openal.*; /** * This class provides factory methods for generating AL and ALC objects. |