comparison truffle/com.oracle.truffle.object/src/com/oracle/truffle/object/Debug.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 364bab1763c9
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.object; 23 package com.oracle.truffle.object;
24 24
25 import java.io.*; 25 import com.oracle.truffle.object.debug.JSONShapeVisitor;
26 import java.util.*; 26 import java.io.FileNotFoundException;
27 import java.util.concurrent.*; 27 import java.io.PrintWriter;
28 28 import java.io.UnsupportedEncodingException;
29 import com.oracle.truffle.object.debug.*; 29 import java.util.Collection;
30 import java.util.concurrent.ConcurrentLinkedQueue;
30 31
31 class Debug { 32 class Debug {
32 private static Collection<ShapeImpl> allShapes; 33 private static Collection<ShapeImpl> allShapes;
33 34
34 static void registerShape(ShapeImpl newShape) { 35 static void registerShape(ShapeImpl newShape) {