Author: sebb
Date: Tue Sep 16 10:41:11 2014
New Revision: 1625239

URL: http://svn.apache.org/r1625239
Log:
RAT-175 - SourceCodeManagementSystems.hasIgnoreFile() should return boolean

Modified:
    creadur/rat/trunk/RELEASE_NOTES.txt
    
creadur/rat/trunk/apache-rat-core/src/main/java/org/apache/rat/config/SourceCodeManagementSystems.java

Modified: creadur/rat/trunk/RELEASE_NOTES.txt
URL: 
http://svn.apache.org/viewvc/creadur/rat/trunk/RELEASE_NOTES.txt?rev=1625239&r1=1625238&r2=1625239&view=diff
==============================================================================
--- creadur/rat/trunk/RELEASE_NOTES.txt (original)
+++ creadur/rat/trunk/RELEASE_NOTES.txt Tue Sep 16 10:41:11 2014
@@ -7,7 +7,8 @@ Rat 0.12 (SNAPSHOT)
  * Issues resolved (see http://issues.apache.org/jira):
    * Bugs:
      * [RAT-173] - Allow complete skip of RAT plugin with rat.skip property
-                   (thanks to Chris Burroughs) 
+                   (thanks to Chris Burroughs)
+     * [RAT-175] - SourceCodeManagementSystems.hasIgnoreFile() should return 
boolean
 
 Rat 0.11
 ========

Modified: 
creadur/rat/trunk/apache-rat-core/src/main/java/org/apache/rat/config/SourceCodeManagementSystems.java
URL: 
http://svn.apache.org/viewvc/creadur/rat/trunk/apache-rat-core/src/main/java/org/apache/rat/config/SourceCodeManagementSystems.java?rev=1625239&r1=1625238&r2=1625239&view=diff
==============================================================================
--- 
creadur/rat/trunk/apache-rat-core/src/main/java/org/apache/rat/config/SourceCodeManagementSystems.java
 (original)
+++ 
creadur/rat/trunk/apache-rat-core/src/main/java/org/apache/rat/config/SourceCodeManagementSystems.java
 Tue Sep 16 10:41:11 2014
@@ -73,7 +73,7 @@ public enum SourceCodeManagementSystems 
         return excludes;
     }
 
-    public Boolean hasIgnoreFile() {
+    public boolean hasIgnoreFile() {
         return ignoreFile != null && ignoreFile.length() != 0;
     }
 


Reply via email to