PX4 / jMAVSim

Simple multirotor simulator with MAVLink protocol support
BSD 3-Clause "New" or "Revised" License
82 stars 207 forks source link

Removed special character in comment #73

Closed asciich closed 6 years ago

asciich commented 6 years ago

The special character I removed causes errors in Javac on ubuntu:14.04. (I did not try other versions).

compile:
    [javac] Compiling 73 source files to /jMAVSim/out/production/jMAVSim
    [javac] /jMAVSim/src/me/drton/jmavsim/SimpleEnvironment.java:14: error: unmappable character for encoding ASCII
    [javac]     public static final double M = 0.0289644;  // molar mass of Earth???s air [kg/mol]
    [javac]                                                                      ^

This small change would allow to compile jMAVSim without previous manual modification and does not affect any functionality

LorenzMeier commented 6 years ago

Thanks!