From 65f399d506bb52aedb08f5bf0d1a4475b7a01863 Mon Sep 17 00:00:00 2001 From: Ilya Kharlamov <502372+ilyakharlamov@users.noreply.github.com> Date: Fri, 25 Jan 2019 12:35:32 -0500 Subject: [PATCH] (#215) LCOM4 static fields are now called by FQN (pdd formatting) --- src/test/java/org/jpeek/metrics/Lcom4Test.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/jpeek/metrics/Lcom4Test.java b/src/test/java/org/jpeek/metrics/Lcom4Test.java index e9241a28..cf856e9f 100644 --- a/src/test/java/org/jpeek/metrics/Lcom4Test.java +++ b/src/test/java/org/jpeek/metrics/Lcom4Test.java @@ -73,7 +73,7 @@ public final class Lcom4Test { * - methodFive does not use 'num' (this is an orphan method, ignored) * Therefore the number of disjoint sets (LCOM4) should be 1 * since all the methods use the same num field. - * @todo #215:30min LCOM4: Graph algorithm to determine disjoint sets. + * @todo #215:30min LCOM4: Graph algorithm to determine disjoint sets. * Currently we can only identify the dependencies via only one graph hop * so we can't trace methodFour that uses 'num' indirectly * via methodTwo and methodOne.