Browse Source

Fix typo in javadoc

See gh-1080
pull/1081/head
nkjackzhang 10 years ago committed by Stephane Nicoll
parent
commit
9656015d26
  1. 2
      spring-context/src/main/java/org/springframework/cache/interceptor/CacheOperation.java
  2. 2
      spring-tx/src/main/java/org/springframework/jca/endpoint/GenericMessageEndpointManager.java

2
spring-context/src/main/java/org/springframework/cache/interceptor/CacheOperation.java vendored

@ -115,7 +115,7 @@ public abstract class CacheOperation implements BasicOperation { @@ -115,7 +115,7 @@ public abstract class CacheOperation implements BasicOperation {
/**
* Return an identifying description for this cache operation.
* <p>Returned value is produced by calling {@link Builder#getOperationDescription()}
* during object construction. This method is used in {#hashCode} and {#equals}.
* during object construction. This method is used in {@link #hashCode} and {@link #equals}.
* @see Builder#getOperationDescription()
*/
@Override

2
spring-tx/src/main/java/org/springframework/jca/endpoint/GenericMessageEndpointManager.java

@ -214,7 +214,7 @@ public class GenericMessageEndpointManager implements SmartLifecycle, Initializi @@ -214,7 +214,7 @@ public class GenericMessageEndpointManager implements SmartLifecycle, Initializi
* Set whether to auto-start the endpoint activation after this endpoint
* manager has been initialized and the context has been refreshed.
* <p>Default is "true". Turn this flag off to defer the endpoint
* activation until an explicit {#start()} call.
* activation until an explicit {@link #start()} call.
*/
public void setAutoStartup(boolean autoStartup) {
this.autoStartup = autoStartup;

Loading…
Cancel
Save