mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
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);
|
|
}
|
|
}
|
|
} |