Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove an infinitely recursive method from URLUtilities #727

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions src/main/java/com/flickr4java/flickr/util/UrlUtilities.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,6 @@
public class UrlUtilities {

public static final String UTF8 = "UTF-8";

/**
* Build a request URL.
*
* @param host
* The host
* @param port
* The port
* @param path
* The path
* @param parameters
* The parameters
* @return The URL
* @throws MalformedURLException
* @deprecated use {@link #buildSecureUrl(java.lang.String, int, java.lang.String, java.util.Map) }
*/
@Deprecated
public static URL buildUrl(String host, int port, String path, Map<String, String> parameters) throws MalformedURLException {
return buildUrl("http", port, path, parameters);
}

/**
* Build a request URL using a given scheme.
Expand Down