Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[java] Update outdated name.
  • Loading branch information
jnthn committed Jan 16, 2011
1 parent bae7169 commit 422f867
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion java/runtime/Rakudo/Init.java
Expand Up @@ -50,7 +50,7 @@ public static ThreadContext Initialize(String settingName)

// Cache native capture and LLCode type object.
CaptureHelper.CaptureTypeObject = settingContext.LexPad.GetByName("capture");
CodeObjectUtility.LLCodeTypeObject = (RakudoCodeRef.Instance)settingContext.LexPad.GetByName("LLCode");
CodeObjectUtility.LLCodeTypeObject = (RakudoCodeRef.Instance)settingContext.LexPad.GetByName("NQPCode");

// Create an execution domain and a thread context for it.
ExecutionDomain executionDomain = new ExecutionDomain();
Expand Down Expand Up @@ -189,6 +189,7 @@ public static Context LoadSetting(String settingName, RakudoObject knowHOW, Raku
}
catch (java.lang.reflect.InvocationTargetException ex) {
System.err.println("Invocation target exception: " + ex.getMessage());
ex.printStackTrace();
System.exit(1);
}

Expand Down

0 comments on commit 422f867

Please sign in to comment.