Author: britter
Date: Fri Dec 20 14:19:09 2013
New Revision: 1552682
URL: http://svn.apache.org/r1552682
Log:
Remove JavaDoc links to private API
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/StopWatch.java
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/StopWatch.java
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/StopWatch.java?rev=1552682&r1=1552681&r2=1552682&view=diff
==============================================================================
---
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/StopWatch.java
(original)
+++
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/StopWatch.java
Fri Dec 20 14:19:09 2013
@@ -444,7 +444,6 @@ public class StopWatch {
*
* @return boolean
* If the StopWatch is started.
- * @see State#isStarted()
* @since 3.2
*/
public boolean isStarted() {
@@ -458,7 +457,6 @@ public class StopWatch {
*
* @return boolean
* If the StopWatch is suspended.
- * @see State#isSuspended()
* @since 3.2
*/
public boolean isSuspended() {
@@ -474,8 +472,7 @@ public class StopWatch {
*
* @return boolean
* If the StopWatch is stopped.
- * @see State#isStopped()
- * @since 3.2
+ * @since 3.2
*/
public boolean isStopped() {
return runningState.isStopped();