Skip to content

Commit

Permalink
unrequired final
Browse files Browse the repository at this point in the history
  • Loading branch information
ar committed Jul 19, 2015
1 parent 3dfafe5 commit 393b6c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -315,10 +315,10 @@ protected List getListeners () {
return listeners;
}
}
public static final LocalSpace getSpace () {
public static LocalSpace getSpace () {
return defaultSpace;
}
public static final LocalSpace getSpace (String spaceName) {
public static LocalSpace getSpace (String spaceName) {
String key = "jpos:pSpace/"+spaceName;
Space sp = TransientSpace.getSpace();
Object obj = sp.rdp (key);
Expand Down
4 changes: 2 additions & 2 deletions compat_1_5_2/src/main/java/org/jpos/space/TransientSpace.java
Expand Up @@ -212,10 +212,10 @@ protected List getListeners () {
return listeners;
}
}
public static final LocalSpace getSpace () {
public static LocalSpace getSpace () {
return defaultSpace;
}
public static final LocalSpace getSpace (String spaceName) {
public static LocalSpace getSpace (String spaceName) {
String key = "jpos:space/"+spaceName;
Object obj = getSpace().rdp (key);
Space sp = getSpace();
Expand Down

0 comments on commit 393b6c6

Please sign in to comment.