TS Config comments trim at first new-line fix #4927
This commit is contained in:
parent
ba2484759d
commit
f1aa1d5220
|
@ -48,7 +48,7 @@ float baroCorrection;@@GAUGE_NAME_FUEL_BARO_CORR@@
|
||||||
struct cranking_fuel_s
|
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?
|
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 tpsCoefficient
|
||||||
float durationCoefficient
|
float durationCoefficient
|
||||||
floatms_t fuel;Fuel: Actual injection\nduration based on all coefficients.
|
floatms_t fuel;Fuel: Actual injection\nduration based on all coefficients.
|
||||||
|
|
|
@ -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
|
* this is the most important invocation - here we read the primary input file and generated code into all
|
||||||
* the destinations/writers
|
* the destinations/writers
|
||||||
*/
|
*/
|
||||||
SystemOut.println("Reading definition from " + this.definitionInputFile);
|
SystemOut.println("Reading definition from " + definitionInputFile);
|
||||||
BufferedReader definitionReader = new BufferedReader(new InputStreamReader(new FileInputStream(this.definitionInputFile), IoUtils.CHARSET.name()));
|
BufferedReader definitionReader = new BufferedReader(new InputStreamReader(new FileInputStream(definitionInputFile), IoUtils.CHARSET.name()));
|
||||||
readBufferedReader(definitionReader, this.destinations);
|
readBufferedReader(definitionReader, destinations);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void read(Reader reader) throws IOException {
|
public void read(Reader reader) throws IOException {
|
||||||
|
|
Loading…
Reference in New Issue