mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 23:51:37 +07:00
GitOrigin-RevId: fd3331c90f28706c98d60134126defb1355e595b
13 lines
228 B
Java
13 lines
228 B
Java
public class Braces {
|
|
public void meth(int j) {
|
|
String s;
|
|
if (j > 10)
|
|
s = "too high";
|
|
else
|
|
{
|
|
<caret>String laugh = "haha";
|
|
s = "too low";
|
|
}
|
|
}
|
|
}
|