Commits

Fabian Faßbender authored 979c21eae5b
We don't need the password static anymore.

We can remove it... I should wakeup first :D
No tags

src/main/java/org/spigotmc/builder/Builder.java

Modified
36 36
37 37 public class Builder
38 38 {
39 39
40 40 public static final boolean IS_WINDOWS = System.getProperty( "os.name" ).startsWith( "Windows" );
41 41 public static final boolean IS_MAC = System.getProperty( "os.name" ).startsWith( "Mac" );
42 42 public static final File CWD = new File( "." );
43 43 public static final String MC_VERSION = "1.8";
44 44
45 45 private static String username = null;
46 - private static String password = null;
47 46
48 47 public static void main(String[] args) throws Exception
49 48 {
50 49 if ( IS_MAC )
51 50 {
52 51 System.out.println( "Sorry, but Macintosh is not currently a supported platform for compilation at this time." );
53 52 System.out.println( "Please run this script on a Windows or Linux PC and then copy the jars to this computer." );
54 53 return;
55 54 }
56 55

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut