From 0f93425d7563379022e2f6608d0aede871223870 Mon Sep 17 00:00:00 2001 From: Brett Wooldridge Date: Tue, 10 Jun 2014 09:20:30 +0900 Subject: [PATCH] Fix javadoc error. --- src/main/java/com/zaxxer/hikari/metrics/IMetricsTracker.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/zaxxer/hikari/metrics/IMetricsTracker.java b/src/main/java/com/zaxxer/hikari/metrics/IMetricsTracker.java index 2e8dd70e..9a44fc6b 100644 --- a/src/main/java/com/zaxxer/hikari/metrics/IMetricsTracker.java +++ b/src/main/java/com/zaxxer/hikari/metrics/IMetricsTracker.java @@ -23,7 +23,7 @@ package com.zaxxer.hikari.metrics; public interface IMetricsTracker { /** - * This method is called when a connection request starts. The {@#MetricsContext.stop()} + * This method is called when a connection request starts. The {@link MetricsContext#stop()} * method will be called at the completion of the connection request, whether or not an * exception occurred. * @@ -43,7 +43,7 @@ public interface IMetricsTracker /** * A base instance of a MetricsContext. Classes extending this class should exhibit the * behavior of "starting" a timer upon contruction, and "stopping" the timer when the - * {@#stop()} method is called. + * {@link MetricsContext#stop()} method is called. * * @author Brett Wooldridge */