[FOray-commit] SF.net SVN: foray: [8322] trunk/foray
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-10-07 15:27:21
|
Revision: 8322
http://svn.sourceforge.net/foray/?rev=8322&view=rev
Author: victormote
Date: 2006-10-07 08:27:15 -0700 (Sat, 07 Oct 2006)
Log Message:
-----------
Make all instance variables private and enforce the checkstyle rule to that effect.
Modified Paths:
--------------
trunk/foray/foray-core/src/java/org/foray/core/SessionConfig.java
trunk/foray/scripts/checkstyle-suppressions.xml
Modified: trunk/foray/foray-core/src/java/org/foray/core/SessionConfig.java
===================================================================
--- trunk/foray/foray-core/src/java/org/foray/core/SessionConfig.java 2006-10-07 15:24:49 UTC (rev 8321)
+++ trunk/foray/foray-core/src/java/org/foray/core/SessionConfig.java 2006-10-07 15:27:15 UTC (rev 8322)
@@ -43,7 +43,7 @@
/** This is not really a configuration option, but is a permanent record
* of the original fo or xml file that was passed on the command line,
* if any. */
- URL baseDocument = null;
+ private URL baseDocument = null;
public SessionConfig(final Log logger) {
super(logger);
Modified: trunk/foray/scripts/checkstyle-suppressions.xml
===================================================================
--- trunk/foray/scripts/checkstyle-suppressions.xml 2006-10-07 15:24:49 UTC (rev 8321)
+++ trunk/foray/scripts/checkstyle-suppressions.xml 2006-10-07 15:27:15 UTC (rev 8322)
@@ -48,8 +48,6 @@
<suppress checks="VisibilityModifier"
files="org.foray.area.*"/>
<suppress checks="VisibilityModifier"
- files="org.foray.core.*"/>
- <suppress checks="VisibilityModifier"
files="org.foray.fotree.*"/>
<suppress checks="VisibilityModifier"
files="org.foray.layout.*"/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|