[java] show recursive call gutter for static qualified calls (IDEA-281605)

GitOrigin-RevId: ecc61fe42163a71c37a5fc7dade8578d99f289e3
This commit is contained in:
Anna Kozlova
2021-11-02 14:06:57 +01:00
committed by intellij-monorepo-bot
parent 0575beb759
commit f383aebc60
3 changed files with 46 additions and 2 deletions

View File

@@ -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);
}
}
}