mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-26 14:31:02 -04:00
fixed some checkstyle issues
This commit is contained in:
parent
8060c74822
commit
23dae545e1
@ -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
|
||||
|
@ -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
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user