@@ -18,7 +18,7 @@ public interface Action {
1818 * @param eventName name of the event
1919 * @return this Action (for usage as fluent API)
2020 */
21- public Action reportEvent (String eventName );
21+ Action reportEvent (String eventName );
2222
2323 /**
2424 * Reports an int value with a specified name.
@@ -27,7 +27,7 @@ public interface Action {
2727 * @param value value itself
2828 * @return this Action (for usage as fluent API)
2929 */
30- public Action reportValue (String valueName , int value );
30+ Action reportValue (String valueName , int value );
3131
3232 /**
3333 * Reports a double value with a specified name.
@@ -36,7 +36,7 @@ public interface Action {
3636 * @param value value itself
3737 * @return this Action (for usage as fluent API)
3838 */
39- public Action reportValue (String valueName , double value );
39+ Action reportValue (String valueName , double value );
4040
4141 /**
4242 * Reports a String value with a specified name.
@@ -45,7 +45,7 @@ public interface Action {
4545 * @param value value itself
4646 * @return this Action (for usage as fluent API)
4747 */
48- public Action reportValue (String valueName , String value );
48+ Action reportValue (String valueName , String value );
4949
5050 /**
5151 * Reports an error with a specified name, error code and a reason.
@@ -55,7 +55,7 @@ public interface Action {
5555 * @param reason reason for this error
5656 * @return this Action (for usage as fluent API)
5757 */
58- public Action reportError (String errorName , int errorCode , String reason );
58+ Action reportError (String errorName , int errorCode , String reason );
5959
6060 /**
6161 * Traces a web request - which is provided as a URLConnection - and allows adding timing information to this request.
@@ -65,7 +65,7 @@ public interface Action {
6565 * @param connection the URLConnection of the HTTP request to be tagged and timed
6666 * @return a WebRequestTracer which allows adding timing information
6767 */
68- public WebRequestTracer traceWebRequest (URLConnection connection );
68+ WebRequestTracer traceWebRequest (URLConnection connection );
6969
7070 /**
7171 * Allows tracing and timing of a web request handled by any 3rd party HTTP Client (e.g. Apache, Google, Jetty, ...).
@@ -77,13 +77,13 @@ public interface Action {
7777 * @param url the URL of the web request to be tagged and timed
7878 * @return a WebRequestTracer which allows getting the tag value and adding timing information
7979 */
80- public WebRequestTracer traceWebRequest (String url );
80+ WebRequestTracer traceWebRequest (String url );
8181
8282 /**
8383 * Leaves this Action.
8484 *
8585 * @return this Action (for usage as fluent API)
8686 */
87- public Action leaveAction ();
87+ Action leaveAction ();
8888
8989}
0 commit comments