[java-identity-provider COMMIT] in /branches/3.3: ./ idp-installer/src/main/java/net/shibboleth/idp/installer/ant/Mer...
noreply at shibboleth.net
noreply at shibboleth.net
Mon Mar 6 21:38:13 EST 2017
Author: scantor
Date: Mon Mar 6 21:38:12 2017
New Revision: 8653
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=8653&view=rev
Log:
BPr8570 - Fix spelling errors
Modified:
branches/3.3/ (props changed)
branches/3.3/idp-installer/src/main/java/net/shibboleth/idp/installer/ant/MergePropertiesTask.java
Modified: branches/3.3/idp-installer/src/main/java/net/shibboleth/idp/installer/ant/MergePropertiesTask.java
URL: http://svn.shibboleth.net/view/java-identity-provider/branches/3.3/idp-installer/src/main/java/net/shibboleth/idp/installer/ant/MergePropertiesTask.java?rev=8653&r1=8652&r2=8653&view=diff
==============================================================================
--- branches/3.3/idp-installer/src/main/java/net/shibboleth/idp/installer/ant/MergePropertiesTask.java (original)
+++ branches/3.3/idp-installer/src/main/java/net/shibboleth/idp/installer/ant/MergePropertiesTask.java Mon Mar 6 21:38:12 2017
@@ -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