mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: ecc61fe42163a71c37a5fc7dade8578d99f289e3
13 lines
298 B
Java
13 lines
298 B
Java
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);
|
|
}
|
|
}
|
|
} |