Add JavaDocs

Do using IntelliJ JavaDocs plugin. Better to have something than nothing.
This commit is contained in:
Liam Newman
2019-11-14 13:24:28 -08:00
parent f6a01551fd
commit 757b9b2118
125 changed files with 7379 additions and 251 deletions

View File

@@ -17,6 +17,12 @@ import java.net.URL;
public interface HttpConnector {
/**
* Opens a connection to the given URL.
*
* @param url
* the url
* @return the http url connection
* @throws IOException
* the io exception
*/
HttpURLConnection connect(URL url) throws IOException;