comparison graal/com.oracle.max.graal.hotspot/src/com/oracle/graal/hotspot/server/CompilationServer.java @ 5060:4ed4295ce15f

Update import statements.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 08 Mar 2012 19:11:12 +0100
parents ed559a528128
children
comparison
equal deleted inserted replaced
5059:ed559a528128 5060:4ed4295ce15f
18 * 18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
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.max.graal.hotspot.server; 23 package com.oracle.graal.hotspot.server;
24 24
25 import java.io.*; 25 import java.io.*;
26 import java.net.*; 26 import java.net.*;
27 import java.util.*; 27 import java.util.*;
28 28
29 import javax.net.*; 29 import javax.net.*;
30 30
31 import com.oracle.max.graal.hotspot.*; 31 import com.oracle.graal.hotspot.*;
32 import com.oracle.max.graal.hotspot.Compiler; 32 import com.oracle.graal.hotspot.Compiler;
33 import com.oracle.max.graal.hotspot.bridge.*; 33 import com.oracle.graal.hotspot.bridge.*;
34 import com.oracle.max.graal.hotspot.logging.*; 34 import com.oracle.graal.hotspot.logging.*;
35 35
36 /** 36 /**
37 * Server side of the client/server compilation model. The server listens for connections on the hardcoded port 1199. 37 * Server side of the client/server compilation model. The server listens for connections on the hardcoded port 1199.
38 */ 38 */
39 public class CompilationServer implements Runnable { 39 public class CompilationServer implements Runnable {