25
25
26
26
package javacserver .server ;
27
27
28
- import com .sun .tools .javac .Main ;
29
28
import java .io .BufferedReader ;
30
29
import java .io .FileNotFoundException ;
31
30
import java .io .IOException ;
39
38
import java .net .Socket ;
40
39
import java .net .SocketException ;
41
40
import java .nio .file .Path ;
41
+ import java .util .Optional ;
42
42
import java .util .Random ;
43
43
import java .util .concurrent .atomic .AtomicBoolean ;
44
+ import java .util .spi .ToolProvider ;
44
45
import javacserver .shared .PortFile ;
45
46
import javacserver .shared .Protocol ;
46
47
import javacserver .shared .Result ;
@@ -225,7 +226,6 @@ private void handleRequest(Socket socket) {
225
226
}
226
227
}
227
228
228
- @ SuppressWarnings ("deprecated" )
229
229
public static int runCompiler (Log log , String [] args ) {
230
230
Log .setLogForCurrentThread (log );
231
231
@@ -234,7 +234,12 @@ public static int runCompiler(Log log, String[] args) {
234
234
PrintWriter printWriter = new PrintWriter (strWriter );
235
235
236
236
// Compile
237
- int exitcode = Main .compile (args , printWriter );
237
+ Optional <ToolProvider > tool = ToolProvider .findFirst ("javac" );
238
+ if (tool .isEmpty ()) {
239
+ Log .error ("Can't find tool javac" );
240
+ return Result .ERROR .exitCode ;
241
+ }
242
+ int exitcode = tool .get ().run (printWriter , printWriter , args );
238
243
239
244
// Process compiler output (which is always errors)
240
245
printWriter .flush ();
0 commit comments