comparison truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/nodes/serial/VariableLengthIntBufferTest.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 9c8c0937da41
children
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.truffle.api.test.nodes.serial; 23 package com.oracle.truffle.api.test.nodes.serial;
24 24
25 import java.nio.*; 25 import com.oracle.truffle.api.nodes.serial.VariableLengthIntBuffer;
26 26 import java.nio.ByteBuffer;
27 import org.junit.*; 27 import org.junit.After;
28 28 import org.junit.Assert;
29 import com.oracle.truffle.api.nodes.serial.*; 29 import org.junit.Before;
30 import org.junit.Test;
30 31
31 public class VariableLengthIntBufferTest { 32 public class VariableLengthIntBufferTest {
32 33
33 private VariableLengthIntBuffer buf; 34 private VariableLengthIntBuffer buf;
34 35