mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-28 23:45:17 -04:00
fixed some checkstyle issues
This commit is contained in:
parent
8060c74822
commit
23dae545e1
@ -1,7 +1,6 @@
|
|||||||
package de.neemann.digital.builder;
|
package de.neemann.digital.builder;
|
||||||
|
|
||||||
import de.neemann.digital.analyse.expression.Expression;
|
import de.neemann.digital.analyse.expression.Expression;
|
||||||
import de.neemann.digital.builder.Gal16v8.CuplExporter;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface used to create a circuit
|
* Interface used to create a circuit
|
||||||
|
@ -115,6 +115,11 @@ public class CuplExporter implements ExpressionExporter<CuplExporter> {
|
|||||||
return pinMap;
|
return pinMap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void writeTo(OutputStream out) throws FuseMapFillerException, IOException, PinMapException {
|
||||||
|
writeTo(new OutputStreamWriter(out, "ISO-8859-1"));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Writes code to given writer
|
* 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
|
* Is called if header is written
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user