mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
Minor fix for classpath value in CodeServlet
This commit is contained in:
parent
fe3436f053
commit
9314461fcf
|
@ -151,7 +151,7 @@ public class CodeServlet extends HttpServlet {
|
|||
|
||||
public CodeServlet(String mainClass, String[] classPath) {
|
||||
this.mainClass = mainClass;
|
||||
this.classPath = classSource != null ? classPath.clone() : new String[0];
|
||||
this.classPath = classPath != null ? classPath.clone() : new String[0];
|
||||
|
||||
httpClient = new HttpClient();
|
||||
httpClient.setFollowRedirects(false);
|
||||
|
|
Loading…
Reference in New Issue
Block a user