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 { public class ClassUtilsTest {
private static class CX implements IB, IA, IE { private static class CX implements IB, IA, IE {
// empty
} }
private static class CY extends CX implements IB, IC { private static class CY extends CX implements IB, IC {
// empty
} }
private interface IA { private interface IA {
// empty
} }
private interface IB { private interface IB {
// empty
} }
private interface IC extends ID, IE { private interface IC extends ID, IE {
// empty
} }
private interface ID { private interface ID {
// empty
} }
private interface IE extends IF { private interface IE extends IF {
// empty
} }
private interface IF { private interface IF {
// empty
} }
private static class Inner { private static class Inner {