Skip to content

Migrating to 1.0 Java

Jason Watkins edited this page Apr 23, 2015 · 1 revision

The Java client is nearly unchaged from the version in which it was introduced.

  1. The order of parameters for constructors that specify network information has changed to match other clients.
  • Fix: Move the port argument from first to third position
  • Ex: XPlaneConnect(49007, "127.0.0.1", 49009) becomes XPlaneConnect("127.0.0.1", 49009, 49007)
  1. No other breaking changes have been made to the Java client.