Skip to content

Commit

Permalink
Fix invalid "see" tags in javadoc in KiwiUrls (#614)
Browse files Browse the repository at this point in the history
Closes #613
  • Loading branch information
sleberknight authored Oct 20, 2021
1 parent 73972d5 commit 16d9f87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/kiwiproject/net/KiwiUrls.java
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ private static int defaultPortForScheme(String scheme) {
*
* @param queryString the query string to create the map from
* @return a map of the query params
* @see #toQueryString(Map) for inverse
* @see #toQueryString(Map) toQueryString(Map) for the inverse operation
*/
public static Map<String, String> queryStringToMap(String queryString) {
if (isBlank(queryString)) {
Expand All @@ -597,7 +597,7 @@ public static Map<String, String> queryStringToMap(String queryString) {
*
* @param parameters the map of the parameters to create the query string from
* @return a concatenated query string
* @see #queryStringToMap(String) for inverse
* @see #queryStringToMap(String) queryStringToMap(String) for the inverse operation
*/
public static String toQueryString(Map<String, String> parameters) {
if (isNullOrEmpty(parameters)) {
Expand Down

0 comments on commit 16d9f87

Please sign in to comment.