Replace non ascii character with UTF-8 encoded string. The build checks for non-ascii characters.

This commit is contained in:
Kevin Ruland 2012-08-23 02:29:26 +00:00
parent 8969a73600
commit 9c6191529c

View File

@ -22,7 +22,7 @@ public class RollControlListener extends AbstractSimulationListener {
private static final String CONTROL_FIN_NAME = "CONTROL"; private static final String CONTROL_FIN_NAME = "CONTROL";
// Define custom flight data type // Define custom flight data type
private static final FlightDataType FIN_CANT_TYPE = FlightDataType.getType("Control fin cant", "αfc", UnitGroup.UNITS_ANGLE); private static final FlightDataType FIN_CANT_TYPE = FlightDataType.getType("Control fin cant", "\u03B1fc", UnitGroup.UNITS_ANGLE);
// Simulation time at which PID controller is activated // Simulation time at which PID controller is activated
private static final double START_TIME = 0.5; private static final double START_TIME = 0.5;