Merge pull request #1080 from nkjackzhang:patch-2

* pr/1080:
  Polish contribution
  Fix typo in javadoc
This commit is contained in:
Stephane Nicoll
2016-06-16 12:13:01 +02:00
2 changed files with 3 additions and 2 deletions

View File

@@ -115,7 +115,8 @@ 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

View File

@@ -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;