Skip to content

Instantly share code, notes, and snippets.

@enebo

enebo/A.java Secret

Created May 11, 2022 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enebo/27b8c635608f94b28ea2b04cfa374898 to your computer and use it in GitHub Desktop.
Save enebo/27b8c635608f94b28ea2b04cfa374898 to your computer and use it in GitHub Desktop.
// People using text editors ruin your life by adding a second indented line here a year
// from when you write this.
public void horrible() {
if (something())
doSomethingElse();
}
public void ok() {
if (something()) doSomethingElse();
}
public void fine() {
if (something()) {
doSomethingElse();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment