[java-metadata-aggregator] branch master updated: Fix typo in error message
Ian Young
ian at iay.org.uk
Wed May 10 13:04:44 EDT 2017
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch master
in repository java-metadata-aggregator.
View the commit online:
http://git.shibboleth.net/view/?p=java-metadata-aggregator.git;a=commit;h=ba7ea463a0f43434d16a15022ffb8694b1646e17
The following commit(s) were added to refs/heads/master by this push:
new ba7ea46 Fix typo in error message
ba7ea46 is described below
commit ba7ea463a0f43434d16a15022ffb8694b1646e17
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Wed May 10 18:04:40 2017 +0100
Fix typo in error message
---
.../main/java/net/shibboleth/metadata/pipeline/SerializationStage.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/SerializationStage.java b/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/SerializationStage.java
index 145577b..8d27800 100644
--- a/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/SerializationStage.java
+++ b/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/SerializationStage.java
@@ -134,7 +134,7 @@ public class SerializationStage<T> extends BaseStage<T> {
try (OutputStream stream = new FileOutputStream(outputFile)) {
serializer.serializeCollection(itemCollection, stream);
} catch (final IOException e) {
- throw new StageProcessingException("Error write to output file " + outputFile.getAbsolutePath(), e);
+ throw new StageProcessingException("Error writing to output file " + outputFile.getAbsolutePath(), e);
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list