diff options
author | Sven Gothel <[email protected]> | 2011-02-09 02:51:29 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-02-09 02:51:29 +0100 |
commit | 4026ba2641a98a742dd3b98cfc72d12c409e2250 (patch) | |
tree | 8df59a55f4986ea599cbf6c77339f0ec9b607a23 /src/java/com/jogamp/common/util/ReflectionUtil.java | |
parent | b649eb1b65614c6f1b2bc734cfb40580b931dc1d (diff) |
Move implementation private files from com.jogamp.<module>.impl. to jogamp.<module>
- com.jogamp.common.impl -> jogamp.common
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/common/util/ReflectionUtil.java')
-rw-r--r-- | src/java/com/jogamp/common/util/ReflectionUtil.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/common/util/ReflectionUtil.java b/src/java/com/jogamp/common/util/ReflectionUtil.java index a04a160..c6b1b88 100644 --- a/src/java/com/jogamp/common/util/ReflectionUtil.java +++ b/src/java/com/jogamp/common/util/ReflectionUtil.java @@ -39,7 +39,7 @@ package com.jogamp.common.util; import java.lang.reflect.*; import com.jogamp.common.JogampRuntimeException; -import com.jogamp.common.impl.Debug; +import jogamp.common.Debug; public final class ReflectionUtil { |