TS Config comments trim at first new-line fix #4927

This commit is contained in:
rusefillc 2023-01-02 14:53:33 -05:00
parent ba2484759d
commit f1aa1d5220
2 changed files with 4 additions and 4 deletions

View File

@ -48,7 +48,7 @@ float baroCorrection;@@GAUGE_NAME_FUEL_BARO_CORR@@
struct cranking_fuel_s
floatms_t baseFuel;Fuel: base duration\nDuration of injection, in ms. During cranking we do not account for injector flow, so if you change injectors you would need to change settings.\nDeprecated. Please use '1'.\nTODO: maybe account for injector flow?
float coolantTemperatureCoefficient;
float coolantTemperatureCoefficient;Cranking: CLT coefficient
float tpsCoefficient
float durationCoefficient
floatms_t fuel;Fuel: Actual injection\nduration based on all coefficients.

View File

@ -86,9 +86,9 @@ public class ReaderState {
* this is the most important invocation - here we read the primary input file and generated code into all
* the destinations/writers
*/
SystemOut.println("Reading definition from " + this.definitionInputFile);
BufferedReader definitionReader = new BufferedReader(new InputStreamReader(new FileInputStream(this.definitionInputFile), IoUtils.CHARSET.name()));
readBufferedReader(definitionReader, this.destinations);
SystemOut.println("Reading definition from " + definitionInputFile);
BufferedReader definitionReader = new BufferedReader(new InputStreamReader(new FileInputStream(definitionInputFile), IoUtils.CHARSET.name()));
readBufferedReader(definitionReader, destinations);
}
public void read(Reader reader) throws IOException {