diff options
author | Michael Bien <[email protected]> | 2010-11-26 14:49:19 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-11-26 14:49:19 +0100 |
commit | 2fe24f9ab9a82f153513abaeb78e3e3033694bb8 (patch) | |
tree | 2a72eeea36d229f99d30e62c09736ebe6f165560 | |
parent | 5379e1e95f02be16423fb15689383075e0828b4f (diff) |
adaptions due to chages in gluegen (VersionUtil).
-rw-r--r-- | src/com/jogamp/opencl/util/JOCLVersion.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/jogamp/opencl/util/JOCLVersion.java b/src/com/jogamp/opencl/util/JOCLVersion.java index f4faacef..6c7e02df 100644 --- a/src/com/jogamp/opencl/util/JOCLVersion.java +++ b/src/com/jogamp/opencl/util/JOCLVersion.java @@ -9,6 +9,7 @@ import com.jogamp.common.util.JogampVersion; import com.jogamp.common.util.VersionUtil; import java.util.jar.Manifest; +import static com.jogamp.common.util.VersionUtil.*; /** * @@ -36,7 +37,7 @@ public class JOCLVersion extends JogampVersion { StringBuilder sb = new StringBuilder(); sb.append(SEPERATOR).append(Platform.getNewline()); - sb.append(VersionUtil.getPlatformInfo(null)); + sb.append(getPlatformInfo(null)); sb.append(SEPERATOR).append(Platform.getNewline()); createInstance().toString(sb); |