-
Notifications
You must be signed in to change notification settings - Fork 278
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.
- 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)
becomesXPlaneConnect("127.0.0.1", 49009, 49007)
- No other breaking changes have been made to the Java client.