Skip to content

Commit

Permalink
Remove leftover debug messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpencerPark committed May 6, 2019
1 parent fe14b73 commit a920ff3
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/main/java/io/github/spencerpark/ijava/JavaKernel.java
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,6 @@ private List<String> formatCompilationException(CompilationException e) {
List<String> fmt = new ArrayList<>();
SnippetEvent event = e.getBadSnippetCompilation();
Snippet snippet = event.snippet();
System.out.println(snippet.kind());
System.out.println(snippet.subKind());
System.out.println(snippet.source());
System.out.println(event.status());
System.out.println(event.causeSnippet());
System.out.println(event.isSignatureChange());
System.out.println(event.value());
this.evaluator.getShell().diagnostics(snippet)
.forEach(d -> {
// If has line information related, highlight that span
Expand Down

0 comments on commit a920ff3

Please sign in to comment.