From 010f3b9f6e90fb3c116811e31e8b6d7192e87cac Mon Sep 17 00:00:00 2001 From: afeng Date: Wed, 20 Feb 2013 12:04:35 -0800 Subject: [PATCH] revert src/jvm/backtype/storm/utils/Utils.java to original --- src/jvm/backtype/storm/utils/Utils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jvm/backtype/storm/utils/Utils.java b/src/jvm/backtype/storm/utils/Utils.java index cfccb8d38..36d4d5c9f 100644 --- a/src/jvm/backtype/storm/utils/Utils.java +++ b/src/jvm/backtype/storm/utils/Utils.java @@ -112,7 +112,7 @@ public static Map findAndReadConfigFile(String name, boolean mustExist) { else return new HashMap(); } if(resources.size() > 1) { - throw new RuntimeException("Found multiple " + name + " resources. You're probably bundling the Storm jars with your topology jar. "); + throw new RuntimeException("Found multiple " + name + " resources. You're probably bundling the Storm jars with your topology jar."); } URL resource = resources.get(0); Yaml yaml = new Yaml();