mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 20:30:42 +07:00
[java] show recursive call gutter for static qualified calls (IDEA-281605)
GitOrigin-RevId: ecc61fe42163a71c37a5fc7dade8578d99f289e3
This commit is contained in:
committed by
intellij-monorepo-bot
parent
0575beb759
commit
f383aebc60
@@ -0,0 +1,13 @@
|
||||
class Recursion {
|
||||
private static void unrecognized (final int depth) {
|
||||
if (depth >= 0) {
|
||||
Recursion.unrecognized(depth - 1);
|
||||
}
|
||||
}
|
||||
|
||||
private static void recognized (final int depth) {
|
||||
if (depth >= 0) {
|
||||
recognized(depth - 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user