fixed some checkstyle issues

This commit is contained in:
hneemann 2017-03-15 21:55:39 +01:00
parent 8060c74822
commit 23dae545e1
2 changed files with 5 additions and 6 deletions

View File

@ -1,7 +1,6 @@
package de.neemann.digital.builder;
import de.neemann.digital.analyse.expression.Expression;
import de.neemann.digital.builder.Gal16v8.CuplExporter;
/**
* Interface used to create a circuit

View File

@ -115,6 +115,11 @@ public class CuplExporter implements ExpressionExporter<CuplExporter> {
return pinMap;
}
@Override
public void writeTo(OutputStream out) throws FuseMapFillerException, IOException, PinMapException {
writeTo(new OutputStreamWriter(out, "ISO-8859-1"));
}
/**
* Writes code to given writer
*
@ -198,11 +203,6 @@ public class CuplExporter implements ExpressionExporter<CuplExporter> {
}
}
@Override
public void writeTo(OutputStream out) throws FuseMapFillerException, IOException, PinMapException {
writeTo(new OutputStreamWriter(out, "ISO-8859-1"));
}
/**
* Is called if header is written
*