Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Correct checkstyle errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos A. Munoz committed Mar 11, 2015
1 parent f6bd5b2 commit e02cd00
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions zanata-war/pom.xml
Expand Up @@ -1760,8 +1760,8 @@
<dependency>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-core</artifactId>
<!-- TODO Use a bom for EAP or wildfly (This is the EAP 6.3 version) -->
<version>5.2.4.Final</version>
<!-- TODO Use a bom for EAP or wildfly (This is the EAP 6.3 version) -->
<version>5.2.4.Final</version>
<scope>provided</scope>
</dependency>

Expand All @@ -1776,7 +1776,7 @@
<groupId>org.jboss.marshalling</groupId>
<artifactId>jboss-marshalling-river</artifactId>
<scope>provided</scope>
</dependency>
</dependency>

<dependency>
<groupId>org.jboss.spec.javax.el</groupId>
Expand Down
Expand Up @@ -60,7 +60,7 @@ public V get(K key) {
public synchronized V getWithLoader(K key) {
// NB: Need to manually implement the cache loader feature
V cachedValue = getCache().get(key);
if( cachedValue == null && cacheLoader != null ) {
if(cachedValue == null && cacheLoader != null) {
try {
cachedValue = cacheLoader.load(key);
} catch (Exception e) {
Expand Down
Expand Up @@ -51,7 +51,7 @@ public void start() {

@Override
public void stop() {
if( delegate != null) {
if(delegate != null) {
delegate.stop();
}
}
Expand Down

0 comments on commit e02cd00

Please sign in to comment.