Merge remote-tracking branch 'origin/master'

# Conflicts:
#	src/sample/Main.java
This commit is contained in:
Michael-Jouanneau 2016-10-29 21:37:33 +02:00
commit dd97c8d5d8

View File

@ -0,0 +1,25 @@
package sample.net;
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
/**
* Simple thing for updating launcher
*/
public class Updater {
private URLConnection conn;
private Updater(String URL) throws IOException {
conn = new URL(URL).openConnection();
}
public void downloadPorn(){
//TODO: Download lots of porn
}
public void downloadMorePorn(){
//TODO: Download more porn
}
}