From a005e6810bb266ce53c8cb9061742b2a2f6e6c3b Mon Sep 17 00:00:00 2001 From: Tom Copeland Date: Mon, 27 Jan 2003 15:05:33 +0000 Subject: [PATCH] made a couple of fields public since they're being set directly anyway.... git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@1378 51baf565-9d33-0410-a72c-fc3788e3496d --- .../net/sourceforge/pmd/rules/CyclomaticComplexityRule.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pmd/src/net/sourceforge/pmd/rules/CyclomaticComplexityRule.java b/pmd/src/net/sourceforge/pmd/rules/CyclomaticComplexityRule.java index fc970b6e09..32473d5b44 100644 --- a/pmd/src/net/sourceforge/pmd/rules/CyclomaticComplexityRule.java +++ b/pmd/src/net/sourceforge/pmd/rules/CyclomaticComplexityRule.java @@ -242,9 +242,9 @@ public class CyclomaticComplexityRule extends AbstractRule { // ASTUnmodifedClassDeclaration or ASTMethodDeclarator or ASTConstructorDeclaration private SimpleNode m_node; - private int m_decisionPoints = 1; - private int m_highestDecisionPoints; - private int m_methodCount; + public int m_decisionPoints = 1; + public int m_highestDecisionPoints; + public int m_methodCount; /** ***********************************************************************