Author: simonetripodi
Date: Fri Sep 2 06:56:56 2011
New Revision: 1164367
URL: http://svn.apache.org/viewvc?rev=1164367&view=rev
Log:
fixed checkstyle violation: Variable 'context' must be private and have
accessor methods. (getter was already present)
Modified:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/PortletWebContext.java
Modified:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/PortletWebContext.java
URL:
http://svn.apache.org/viewvc/commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/PortletWebContext.java?rev=1164367&r1=1164366&r2=1164367&view=diff
==============================================================================
---
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/PortletWebContext.java
(original)
+++
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/PortletWebContext.java
Fri Sep 2 06:56:56 2011
@@ -79,7 +79,7 @@ public class PortletWebContext extends W
/**
* <p>The <code>PortletContext</code> for this web application.</p>
*/
- protected PortletContext context = null;
+ private PortletContext context = null;
/**
@@ -264,7 +264,6 @@ public class PortletWebContext extends W
}
-
/**
* See the {@link WebContext}'s Javadoc.
*