Skip to content

Commit

Permalink
Clean up PolyglotPlugin
Browse files Browse the repository at this point in the history
- Fix comment indent
- Fix SVM builds
  • Loading branch information
fniephaus committed May 14, 2019
1 parent ed21ac6 commit f68697f
Showing 1 changed file with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,6 @@ protected static final Object doExecute(final Object receiver, final ArrayObject
throw new PrimitiveFailed();
} catch (final UnsupportedMessageException e) {
throw SqueakException.illegalState(e);
} catch (final Throwable e) {
e.printStackTrace();
throw e;
}
}
}
Expand Down Expand Up @@ -437,9 +434,6 @@ protected static final Object doInvoke(final Object receiver, final NativeObject
throw new PrimitiveFailed();
} catch (UnknownIdentifierException | UnsupportedMessageException e) {
throw SqueakException.illegalState(e);
} catch (final Throwable e) {
e.printStackTrace();
throw e;
}
}
}
Expand Down Expand Up @@ -788,9 +782,9 @@ protected static final Object doWrite(final Object receiver, final NativeObject
}
}

/*
* Java interop.
*/
/*
* Java interop.
*/

@GenerateNodeFactory
@SqueakPrimitive(names = "primitiveAddToHostClassPath")
Expand Down

0 comments on commit f68697f

Please sign in to comment.