Skip to content

Commit

Permalink
fixed some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Jan 25, 2024
1 parent ee2422c commit 91e71a5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
3 changes: 0 additions & 3 deletions src/org/rascalmpl/interpreter/DefaultTestResultListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,11 @@
*******************************************************************************/
package org.rascalmpl.interpreter;

import java.io.IOException;
import java.io.PrintWriter;

import org.rascalmpl.exceptions.Throw;
import org.rascalmpl.repl.ReplTextWriter;

import io.usethesource.vallang.ISourceLocation;
import io.usethesource.vallang.io.StandardTextWriter;

public class DefaultTestResultListener implements ITestResultListener{
private PrintWriter err;
Expand Down
4 changes: 2 additions & 2 deletions src/org/rascalmpl/library/vis/Charts.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ Content bubbleChart(list[str] labels, lrel[num x,num y, num r] values ..., str t
= content(title, chartServer(chartData(labels, values), \type=scatter(), title=title, colorMode=colorMode, legend=true));

Content bubbleChart(rel[num x,num y, num r] v, str title="Scatterplot", ChartAutoColorMode colorMode=\data())
= content(title, chartServer(chartData(title, v), \type=scatter(), title=title, colorMode=colorMode), legend=false);

= content(title, chartServer(chartData(title, v), \type=scatter(), title=title, colorMode=colorMode, legend=false));
Content bubbleChart(list[str] labels, rel[num x,num y, num r] values ..., str title="Scatterplots", ChartAutoColorMode colorMode=\data())
= content(title, chartServer(chartData(labels, values), \type=scatter(), title=title, colorMode=colorMode, legend=true));

Expand Down
1 change: 0 additions & 1 deletion src/org/rascalmpl/repl/BaseREPL.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import java.util.concurrent.ConcurrentLinkedQueue;

import org.fusesource.jansi.Ansi;
import org.fusesource.jansi.Ansi.Color;
import org.rascalmpl.ideservices.IDEServices;
import org.rascalmpl.library.util.PathConfig;

Expand Down

0 comments on commit 91e71a5

Please sign in to comment.