package com.jsonde.samples.legacy;
public class Issue13 {
public static void main(String[] arguments) throws Exception {
branch1();
branch2();
}
private static void branch1() {
method1();
method1();
}
private static void branch2() {
method1();
method2();
method1();
method2();
}
private static void method1() {
}
private static void method2() {
}
}