Skip to content

Instantly share code, notes, and snippets.

@masayuki-tsuji
Last active November 22, 2018 01:02
Show Gist options
  • Save masayuki-tsuji/b4ca92c6081f0221584d9133f3abe5ec to your computer and use it in GitHub Desktop.
Save masayuki-tsuji/b4ca92c6081f0221584d9133f3abe5ec to your computer and use it in GitHub Desktop.
【レポート】JetBrains Night Tokyo 2018 ref: https://qiita.com/tu-kun/items/88419019b3b3644b2794
Foo f = new Foo();
try {
Foo f = new Foo();
f.foo();
} catch(Exeption e) {
System.out.println("Hello World");
}
try {
// TODO hogehoge
// hogehoge この行はTODOコメントとして表示されない
Foo f = new Foo();
f.foo();
} catch(Exeption e) {
System.out.println("Hello World");
}
try {
// TODO hogehoge
// hogehoge この行はTODOコメントとして表示される
Foo f = new Foo();
f.foo();
} catch(Exeption e) {
System.out.println("Hello World");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment