From: kruland2607 Date: Thu, 23 Aug 2012 02:29:26 +0000 (+0000) Subject: Replace non ascii character with UTF-8 encoded string. The build checks for non... X-Git-Tag: upstream/12.09^2~37 X-Git-Url: https://git.gag.com/?p=debian%2Fopenrocket;a=commitdiff_plain;h=bbdd01e3f680d5c22b6dae29220d191fd8fc7163 Replace non ascii character with UTF-8 encoded string. The build checks for non-ascii characters. git-svn-id: https://openrocket.svn.sourceforge.net/svnroot/openrocket/trunk@987 180e2498-e6e9-4542-8430-84ac67f01cd8 --- diff --git a/core/src/net/sf/openrocket/simulation/listeners/example/RollControlListener.java b/core/src/net/sf/openrocket/simulation/listeners/example/RollControlListener.java index 4c99375b..68063cb4 100644 --- a/core/src/net/sf/openrocket/simulation/listeners/example/RollControlListener.java +++ b/core/src/net/sf/openrocket/simulation/listeners/example/RollControlListener.java @@ -22,7 +22,7 @@ public class RollControlListener extends AbstractSimulationListener { private static final String CONTROL_FIN_NAME = "CONTROL"; // 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 private static final double START_TIME = 0.5;