Comment empty blocks.

This commit is contained in:
Gary Gregory 2017-10-23 10:40:57 -06:00
parent b52c69b1b0
commit 0d95c55040
1 changed files with 8 additions and 0 deletions

View File

@ -51,29 +51,37 @@
public class ClassUtilsTest {
private static class CX implements IB, IA, IE {
// empty
}
private static class CY extends CX implements IB, IC {
// empty
}
private interface IA {
// empty
}
private interface IB {
// empty
}
private interface IC extends ID, IE {
// empty
}
private interface ID {
// empty
}
private interface IE extends IF {
// empty
}
private interface IF {
// empty
}
private static class Inner {