mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-14 20:31:56 +00:00
code formatting
This commit is contained in:
@@ -25,5 +25,4 @@ public class EndOfStreamException extends RuntimeException {
|
||||
public EndOfStreamException() {
|
||||
super("Premature end of the stream reached");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -79,12 +79,12 @@ public class Main {
|
||||
private static boolean commandLineMode = false;
|
||||
public static MainFrame mainFrame;
|
||||
|
||||
private static void loadProperties(){
|
||||
private static void loadProperties() {
|
||||
Properties prop = new Properties();
|
||||
try {
|
||||
prop.load(Main.class.getResourceAsStream("/project.properties"));
|
||||
version = prop.getProperty("version");
|
||||
applicationVerName = applicationName + " v."+version;
|
||||
applicationVerName = applicationName + " v." + version;
|
||||
updatePage = updatePageStub + version;
|
||||
shortApplicationVerName = shortApplicationName + " v." + version;
|
||||
} catch (IOException ex) {
|
||||
@@ -467,7 +467,7 @@ public class Main {
|
||||
*/
|
||||
public static void main(String[] args) throws IOException {
|
||||
loadProperties();
|
||||
View.setLookAndFeel();
|
||||
View.setLookAndFeel();
|
||||
Configuration.load();
|
||||
|
||||
int pos = 0;
|
||||
|
||||
Reference in New Issue
Block a user