You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by an...@apache.org on 2015/03/24 22:20:32 UTC

[15/16] incubator-tamaya git commit: Fixed checkstyle issue.

Fixed checkstyle issue.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/78060372
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/78060372
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/78060372

Branch: refs/heads/master
Commit: 78060372bf5d692da48b1de77f955d013975f5be
Parents: 0f53ebd
Author: anatole <an...@apache.org>
Authored: Tue Mar 24 22:19:26 2015 +0100
Committer: anatole <an...@apache.org>
Committed: Tue Mar 24 22:19:26 2015 +0100

----------------------------------------------------------------------
 .../apache/tamaya/core/propertysource/SimplePropertySource.java   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/78060372/java8/core/src/main/java/org/apache/tamaya/core/propertysource/SimplePropertySource.java
----------------------------------------------------------------------
diff --git a/java8/core/src/main/java/org/apache/tamaya/core/propertysource/SimplePropertySource.java b/java8/core/src/main/java/org/apache/tamaya/core/propertysource/SimplePropertySource.java
index 9692574..9853b30 100644
--- a/java8/core/src/main/java/org/apache/tamaya/core/propertysource/SimplePropertySource.java
+++ b/java8/core/src/main/java/org/apache/tamaya/core/propertysource/SimplePropertySource.java
@@ -47,8 +47,7 @@ public class SimplePropertySource implements PropertySource{
         try{
             this.properties = load(propertiesLocation.toURI().toURL());
             this.name = propertiesLocation.toString();
-        }
-        catch(IOException e){
+        } catch(IOException e){
             throw new ConfigException("Failed to load properties from " + propertiesLocation,e);
         }
     }