Skip to content

Commit

Permalink
corrected name of repeatable proxer
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejmikosik committed Feb 19, 2018
1 parent 2700add commit f76a820
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion main/java/org/testory/TestoryFacade.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import static org.testory.proxy.proxer.FixObjectBugProxer.fixObjectBug;
import static org.testory.proxy.proxer.JdkCollectionsProxer.jdkCollections;
import static org.testory.proxy.proxer.NonFinalProxer.nonFinal;
import static org.testory.proxy.proxer.RepeatableProxy.repeatable;
import static org.testory.proxy.proxer.RepeatableProxer.repeatable;
import static org.testory.proxy.proxer.TypeSafeProxer.typeSafe;

import org.testory.common.PageFormatter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@

import net.sf.cglib.proxy.Factory;

public class RepeatableProxy implements Proxer {
public class RepeatableProxer implements Proxer {
private final Proxer proxer;

private RepeatableProxy(Proxer proxer) {
private RepeatableProxer(Proxer proxer) {
this.proxer = proxer;
}

public static Proxer repeatable(Proxer proxer) {
check(proxer != null);
return new RepeatableProxy(proxer);
return new RepeatableProxer(proxer);
}

public Object proxy(Typing typing, Handler handler) {
Expand Down
2 changes: 1 addition & 1 deletion test/java/org/testory/proxy/proxer/TestCglibProxer.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import static org.testory.proxy.proxer.CglibProxer.cglibProxer;
import static org.testory.proxy.proxer.FixObjectBugProxer.fixObjectBug;
import static org.testory.proxy.proxer.JdkCollectionsProxer.jdkCollections;
import static org.testory.proxy.proxer.RepeatableProxy.repeatable;
import static org.testory.proxy.proxer.RepeatableProxer.repeatable;
import static org.testory.proxy.proxer.Tester.tester;
import static org.testory.testing.Fakes.newObject;
import static org.testory.testing.Fakes.newThrowable;
Expand Down

0 comments on commit f76a820

Please sign in to comment.