Skip to content

Commit 22038f4

Browse files
committed
Fixed malformed javadoc markup
1 parent fb8e60e commit 22038f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/piwik/java/tracking/PiwikRequest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ public void setOutlinkUrlWithString(String outlinkUrl){
959959
* Get the page custom variable at the specified key.
960960
* @param key the key of the variable to get
961961
* @return the variable at the specified key, null if key is not present
962-
* @deprecated Use the {@link #getPageCustomVariable(int) getPageCustomVariable(int)} method instead.
962+
* @deprecated Use the {@link #getPageCustomVariable(int)} method instead.
963963
*/
964964
@Deprecated
965965
public String getPageCustomVariable(String key){
@@ -980,7 +980,7 @@ public CustomVariable getPageCustomVariable(int index){
980980
* All page custom variables with this key will be overwritten or deleted
981981
* @param key the key of the variable to set
982982
* @param value the value of the variable to set at the specified key. A null value will remove this custom variable
983-
* @deprecated Use the {@link #setPageCustomVariable(CustomVariable) getPageCustomVariable(CustomVariable)} method instead.
983+
* @deprecated Use the {@link #setPageCustomVariable(CustomVariable, int)} method instead.
984984
*/
985985
@Deprecated
986986
public void setPageCustomVariable(String key, String value){
@@ -1356,7 +1356,7 @@ public void setTrackBotRequests(Boolean trackBotRequests){
13561356
* Get the visit custom variable at the specified key.
13571357
* @param key the key of the variable to get
13581358
* @return the variable at the specified key, null if key is not present
1359-
* @deprecated Use the {@link #getVisitCustomVariable(CustomVariable) getVisitCustomVariable(CustomVariable)} method instead.
1359+
* @deprecated Use the {@link #getVisitCustomVariable(int)} method instead.
13601360
*/
13611361
@Deprecated
13621362
public String getUserCustomVariable(String key){
@@ -1377,7 +1377,7 @@ public CustomVariable getVisitCustomVariable(int index){
13771377
* All visit custom variables with this key will be overwritten or deleted
13781378
* @param key the key of the variable to set
13791379
* @param value the value of the variable to set at the specified key. A null value will remove this parameter
1380-
* @deprecated Use the {@link #setVisitCustomVariable(CustomVariable) setVisitCustomVariable(CustomVariable)} method instead.
1380+
* @deprecated Use the {@link #setVisitCustomVariable(CustomVariable, int)} method instead.
13811381
*/
13821382
@Deprecated
13831383
public void setUserCustomVariable(String key, String value){

0 commit comments

Comments
 (0)