Skip to content

Instantly share code, notes, and snippets.

@joshrosso
Created September 10, 2014 03:01
Show Gist options
  • Save joshrosso/65265cd927eca1c53379 to your computer and use it in GitHub Desktop.
Save joshrosso/65265cd927eca1c53379 to your computer and use it in GitHub Desktop.
@Override
public int compareTo(Flight otherFlight) {
int value = Double.compare(this.getPrice(), otherFlight.getPrice());
return value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment