Author: desruisseaux
Date: Sat Mar 17 12:52:21 2018
New Revision: 1827083

URL: http://svn.apache.org/viewvc?rev=1827083&view=rev
Log:
Minor formatting, svn properties settings and NetBeans project configuration.

Modified:
    
sis/branches/JDK8/core/sis-metadata/src/test/java/org/apache/sis/test/xml/SchemaCompliance.java
    sis/branches/JDK8/core/sis-portrayal/   (props changed)
    
sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/Classes.java
    sis/branches/JDK8/ide-project/NetBeans/build.xml
    sis/branches/JDK8/ide-project/eclipse/README.txt

Modified: 
sis/branches/JDK8/core/sis-metadata/src/test/java/org/apache/sis/test/xml/SchemaCompliance.java
URL: 
http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-metadata/src/test/java/org/apache/sis/test/xml/SchemaCompliance.java?rev=1827083&r1=1827082&r2=1827083&view=diff
==============================================================================
--- 
sis/branches/JDK8/core/sis-metadata/src/test/java/org/apache/sis/test/xml/SchemaCompliance.java
 [UTF-8] (original)
+++ 
sis/branches/JDK8/core/sis-metadata/src/test/java/org/apache/sis/test/xml/SchemaCompliance.java
 [UTF-8] Sat Mar 17 12:52:21 2018
@@ -169,8 +169,8 @@ public final strictfp class SchemaCompli
         }
 
         boolean equal(final Info other) {
-            return Objects.equals(typeName,     other.typeName)
-                && Objects.equals(namespace,    other.namespace)
+            return Objects.equals(typeName,  other.typeName)
+                && Objects.equals(namespace, other.namespace)
                 && isRequired   == other.isRequired
                 && isCollection == other.isCollection;
         }

Propchange: sis/branches/JDK8/core/sis-portrayal/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Mar 17 12:52:21 2018
@@ -0,0 +1,10 @@
+.project
+.settings
+.classpath
+.jetproperties
+.wtpmodules
+target
+bin
+cobertura.ser
+nbproject
+nbactions.xml

Modified: 
sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/Classes.java
URL: 
http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/Classes.java?rev=1827083&r1=1827082&r2=1827083&view=diff
==============================================================================
--- 
sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/Classes.java
 [UTF-8] (original)
+++ 
sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/Classes.java
 [UTF-8] Sat Mar 17 12:52:21 2018
@@ -714,7 +714,7 @@ cmp:    for (final Class<?> c : c1) {
      */
     public static boolean isPossibleGetter(final Method method) {
         return method.getReturnType() != Void.TYPE &&
-               method.getParameterTypes().length == 0 &&
+               method.getParameterCount() == 0 &&
               !method.isSynthetic() &&
               !ArraysExt.contains(EXCLUDES, method.getName());
     }

Modified: sis/branches/JDK8/ide-project/NetBeans/build.xml
URL: 
http://svn.apache.org/viewvc/sis/branches/JDK8/ide-project/NetBeans/build.xml?rev=1827083&r1=1827082&r2=1827083&view=diff
==============================================================================
--- sis/branches/JDK8/ide-project/NetBeans/build.xml (original)
+++ sis/branches/JDK8/ide-project/NetBeans/build.xml Sat Mar 17 12:52:21 2018
@@ -48,9 +48,11 @@
       <fileset 
dir="${project.root}/core/sis-raster/target/generated-resources">
         <include name="**/*.utf"/>
       </fileset>
+      <!-- Not yet available.
       <fileset 
dir="${project.root}/core/sis-portrayal/target/generated-resources">
         <include name="**/*.utf"/>
       </fileset>
+      -->
       <fileset 
dir="${project.root}/storage/sis-storage/target/generated-resources">
         <include name="**/*.utf"/>
       </fileset>

Modified: sis/branches/JDK8/ide-project/eclipse/README.txt
URL: 
http://svn.apache.org/viewvc/sis/branches/JDK8/ide-project/eclipse/README.txt?rev=1827083&r1=1827082&r2=1827083&view=diff
==============================================================================
--- sis/branches/JDK8/ide-project/eclipse/README.txt [UTF-8] (original)
+++ sis/branches/JDK8/ide-project/eclipse/README.txt [UTF-8] Sat Mar 17 
12:52:21 2018
@@ -1 +1,3 @@
-This is a project and classpath file to build Apache SIS using Ecliipse. 
Rename these files to .classpath and .project and use them to seed your IDE 
project based on Eclipse. Also define a variable calle M2_REPO that points to 
your .m2 repository.
+This is a project and classpath file to build Apache SIS using Eclipse.
+Rename these files to .classpath and .project and use them to seed your IDE 
project based on Eclipse.
+Also define a variable calle M2_REPO that points to your .m2 repository.


Reply via email to