Merge pull request #23480 from boojongmin

* pr/23480:
  Fix typo

Closes gh-23480
This commit is contained in:
Stephane Nicoll
2019-08-18 08:10:18 +02:00

View File

@@ -3180,7 +3180,7 @@ following example shows:
public static void main(String[] args) {
ProxyFactory factory = new ProxyFactory(new SimplePojo());
factory.adddInterface(Pojo.class);
factory.addInterface(Pojo.class);
factory.addAdvice(new RetryAdvice());
factory.setExposeProxy(true);
@@ -3195,7 +3195,7 @@ following example shows:
----
fun main() {
val factory = ProxyFactory(SimplePojo())
factory.adddInterface(Pojo::class.java)
factory.addInterface(Pojo::class.java)
factory.addAdvice(RetryAdvice())
factory.isExposeProxy = true