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

Commit

Permalink
Make the debug module variable public, like the rest of the code.
Browse files Browse the repository at this point in the history
  • Loading branch information
eigood committed Jan 14, 2010
1 parent db0b429 commit 4b43114
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -25,7 +25,7 @@
*/
public class ExecutionContextFactory {

protected static final String module = ExecutionContextFactory.class.getName();
public static final String module = ExecutionContextFactory.class.getName();

public static ExecutionContext getInstance() {
ExecutionContext result = null;
Expand Down
2 changes: 1 addition & 1 deletion framework/api/src/org/ofbiz/api/context/ThreadContext.java
Expand Up @@ -31,7 +31,7 @@
*/
public class ThreadContext {

protected static final String module = ThreadContext.class.getName();
public static final String module = ThreadContext.class.getName();

protected static final ThreadLocal<ExecutionContext> executionContext = new ThreadLocal<ExecutionContext>() {
protected synchronized ExecutionContext initialValue() {
Expand Down
Expand Up @@ -30,7 +30,7 @@
@SuppressWarnings("serial")
public class SecurityAwareList<E> extends ArrayList<E> implements List<E> {

protected final static String module = SecurityAwareList.class.getName();
public final static String module = SecurityAwareList.class.getName();
protected final Set<String> serviceNameList;

public SecurityAwareList(List<E> valueList, Set<String> serviceNameList) {
Expand Down

0 comments on commit 4b43114

Please sign in to comment.