We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 063233a commit 18eed79Copy full SHA for 18eed79
src/docs/asciidoc/core/core-aop.adoc
@@ -3180,7 +3180,7 @@ following example shows:
3180
3181
public static void main(String[] args) {
3182
ProxyFactory factory = new ProxyFactory(new SimplePojo());
3183
- factory.adddInterface(Pojo.class);
+ factory.addInterface(Pojo.class);
3184
factory.addAdvice(new RetryAdvice());
3185
factory.setExposeProxy(true);
3186
@@ -3195,7 +3195,7 @@ following example shows:
3195
----
3196
fun main() {
3197
val factory = ProxyFactory(SimplePojo())
3198
- factory.adddInterface(Pojo::class.java)
+ factory.addInterface(Pojo::class.java)
3199
factory.addAdvice(RetryAdvice())
3200
factory.isExposeProxy = true
3201
0 commit comments