[java-identity-provider COMMIT] /trunk/idp-installer/src/main/java/net/shibboleth/idp/installer/ant/MergePropertiesTa...

noreply at shibboleth.net noreply at shibboleth.net
Thu Nov 17 06:16:31 EST 2016


Author: iay
Date: Thu Nov 17 06:16:29 2016
New Revision: 8570

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=8570&view=rev
Log:
Fix spelling errors

Modified:
    trunk/idp-installer/src/main/java/net/shibboleth/idp/installer/ant/MergePropertiesTask.java

Modified: trunk/idp-installer/src/main/java/net/shibboleth/idp/installer/ant/MergePropertiesTask.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-installer/src/main/java/net/shibboleth/idp/installer/ant/MergePropertiesTask.java?rev=8570&r1=8569&r2=8570&view=diff
==============================================================================
--- trunk/idp-installer/src/main/java/net/shibboleth/idp/installer/ant/MergePropertiesTask.java	(original)
+++ trunk/idp-installer/src/main/java/net/shibboleth/idp/installer/ant/MergePropertiesTask.java	Thu Nov 17 06:16:29 2016
@@ -73,22 +73,22 @@
     public void execute() {
         if (null == inFile) {
             log("Input file not provided", Project.MSG_ERR);
-            throw new BuildException("Non existant input file");
+            throw new BuildException("Non-existent input file");
         }
         if (!inFile.exists()) {
             log("Input file " + inFile.getAbsolutePath() + " does not exist");
-            throw new BuildException("Non existant input file");
+            throw new BuildException("Non-existent input file");
         }
         if (null == outFile) {
             log("Output file not provided, input taken", Project.MSG_INFO);
         }
         if (null == mergeFile) {
             log("Merge file not provided", Project.MSG_ERR);
-            throw new BuildException("Non existant input file");
+            throw new BuildException("Non-existent input file");
         }
         if (!mergeFile.exists()) {
             log("Input file " + mergeFile.getAbsolutePath() + " does not exist");
-            throw new BuildException("Non existant merge file");
+            throw new BuildException("Non-existent merge file");
         }
         
         final PropertiesWithComments in = new PropertiesWithComments(); 



More information about the commits mailing list