Repository: commons-lang Updated Branches: refs/heads/master b52c69b1b -> 0d95c5504
Comment empty blocks. Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/0d95c550 Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/0d95c550 Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/0d95c550 Branch: refs/heads/master Commit: 0d95c55040db6fd1e4f976280d35659587f3f8ad Parents: b52c69b Author: Gary Gregory <ggreg...@apache.org> Authored: Mon Oct 23 10:40:57 2017 -0600 Committer: Gary Gregory <ggreg...@apache.org> Committed: Mon Oct 23 10:40:57 2017 -0600 ---------------------------------------------------------------------- src/test/java/org/apache/commons/lang3/ClassUtilsTest.java | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/0d95c550/src/test/java/org/apache/commons/lang3/ClassUtilsTest.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/commons/lang3/ClassUtilsTest.java b/src/test/java/org/apache/commons/lang3/ClassUtilsTest.java index 5aa2baf..441fa80 100644 --- a/src/test/java/org/apache/commons/lang3/ClassUtilsTest.java +++ b/src/test/java/org/apache/commons/lang3/ClassUtilsTest.java @@ -51,29 +51,37 @@ import org.junit.Test; 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 {