Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Space-o fix; timotimo++.
  • Loading branch information
jnthn committed Mar 9, 2013
1 parent 83d173e commit a5095fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/perl6/nqp/runtime/Ops.java
Expand Up @@ -2253,7 +2253,7 @@ public static String sha1(String str) throws NoSuchAlgorithmException, Unsupport
}
public static SixModelObject createsc(String handle, ThreadContext tc) {
if (tc.gc.scs.containsKey(handle))
throw ExceptionHandling.dieInternal(tc, "SC with handle " + handle + "already exists");
throw ExceptionHandling.dieInternal(tc, "SC with handle " + handle + " already exists");

SerializationContext sc = new SerializationContext(handle);
tc.gc.scs.put(handle, sc);
Expand Down

0 comments on commit a5095fd

Please sign in to comment.