aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-01-26 05:56:53 +0100
committerSven Gothel <[email protected]>2014-01-26 05:56:53 +0100
commit231536b10bac8ac42879de7a3e30ca4ddced5aba (patch)
tree115aba5f827aaa70a1064560fef28bbfdc0302d9
parent2de32d692918c1cf0643daf598afb129c4a204a1 (diff)
MiscUtils: Forgot to change access of package-private to public due to new package location (sorry)
-rw-r--r--test/com/jogamp/opencl/test/util/MiscUtils.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/com/jogamp/opencl/test/util/MiscUtils.java b/test/com/jogamp/opencl/test/util/MiscUtils.java
index 5d74eb45..8332c24a 100644
--- a/test/com/jogamp/opencl/test/util/MiscUtils.java
+++ b/test/com/jogamp/opencl/test/util/MiscUtils.java
@@ -40,9 +40,9 @@ import static org.junit.Assert.*;
public class MiscUtils {
//decrease this value on systems with few memory.
- final static int ONE_MB = 1048576;
+ public final static int ONE_MB = 1048576;
- final static int NUM_ELEMENTS = 10000000;
+ public final static int NUM_ELEMENTS = 10000000;
public static final void fillBuffer(ByteBuffer buffer, int seed) {