Skip to content
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