Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix library access error at BasePanelTest #5655

Merged
merged 1 commit into from
Nov 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,9 @@ dependencies {
testCompile 'com.tngtech.archunit:archunit-junit5-api:0.12.0'
//testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.11.0'
testCompile 'com.tngtech.archunit:archunit-junit5-api:0.12.0'
testCompile "org.testfx:testfx-core:4.0.15-alpha"
testCompile "org.testfx:testfx-junit5:4.0.15-alpha"
testCompile "org.testfx:testfx-core:4.0.17-alpha-SNAPSHOT"
testCompile "org.testfx:testfx-junit5:4.0.17-alpha-SNAPSHOT"
testCompile "org.hamcrest:hamcrest-library:2.2"

checkstyle 'com.puppycrawl.tools:checkstyle:8.26'
xjc group: 'org.glassfish.jaxb', name: 'jaxb-xjc', version: '2.3.2'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/JabRefLauncher.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.jabref;

/**
* JabRef Launcher
* JabRef launcher: This just starts JabRefMain. It is there because to have the name consistent to other Java applications.
*/
public class JabRefLauncher {
public static void main(String[] args) {
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/jabref/JabRefMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import org.slf4j.LoggerFactory;

/**
* JabRef MainClass
* JabRef's main class to process command line options and to start the UI
*/
public class JabRefMain extends Application {

Expand All @@ -45,7 +45,7 @@ public static void main(String[] args) {
}

@Override
public void start(Stage mainStage) throws Exception {
public void start(Stage mainStage) {
try {
// Fail on unsupported Java versions
ensureCorrectJavaVersion();
Expand Down