Skip to content

Instantly share code, notes, and snippets.

@ijokarumawak
Created October 6, 2015 12:58
Show Gist options
  • Save ijokarumawak/da85eec8d33ed9c3e8e8 to your computer and use it in GitHub Desktop.
Save ijokarumawak/da85eec8d33ed9c3e8e8 to your computer and use it in GitHub Desktop.
public static FlightPath create(JsonObject input, String from, String to) {
return new FlightPath(
input.getString("name"),
input.getString("flight"),
Arrays.asList(input.getString("equipment").split(" ")),
input.getString("utc"),
from,
to
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment