Skip to content

Commit

Permalink
Increate visibility of method body creators
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwdouglas committed Feb 1, 2011
1 parent fcade09 commit 2e4c887
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/jboss/invocation/proxy/ProxyFactory.java
Expand Up @@ -71,7 +71,7 @@ public class ProxyFactory<T> extends AbstractProxyFactory<T> {
* @author Stuart Douglas
*
*/
protected class ProxyMethodBodyCreator implements MethodBodyCreator {
public class ProxyMethodBodyCreator implements MethodBodyCreator {

/**
* Override a method by forwarding all calls to the dispatcher.
Expand Down Expand Up @@ -174,7 +174,7 @@ public void overrideMethod(ClassMethod method, Method superclassMethod) {
* @author Stuart Douglas
*
*/
protected class ProxyConstructorBodyCreator implements ConstructorBodyCreator {
public class ProxyConstructorBodyCreator implements ConstructorBodyCreator {

/**
* Override the given constructor.
Expand Down Expand Up @@ -204,7 +204,7 @@ public void overrideConstructor(ClassMethod method, Constructor<?> constructor)
* @author Stuart Douglas
*
*/
protected class WriteReplaceBodyCreator implements MethodBodyCreator {
public class WriteReplaceBodyCreator implements MethodBodyCreator {

/**
* Generate the writeReplace method body.
Expand Down

0 comments on commit 2e4c887

Please sign in to comment.