Merge remote-tracking branch 'origin/master'
# Conflicts: # src/sample/Main.java
This commit is contained in:
commit
dd97c8d5d8
25
src/sample/net/Updater.java
Normal file
25
src/sample/net/Updater.java
Normal 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
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user