Skip to content

Instantly share code, notes, and snippets.

@stasimus
Created October 30, 2018 13:03
Show Gist options
  • Save stasimus/49390c72579dbbe09c7800fa20639f86 to your computer and use it in GitHub Desktop.
Save stasimus/49390c72579dbbe09c7800fa20639f86 to your computer and use it in GitHub Desktop.
public class Example {
private final int state;
public Example() {
try {
state = 5;
} catch (Exception e) {
state = -1;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment