-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'JabRef:main' into main
- Loading branch information
Showing
32 changed files
with
1,110 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# See https://www.gitpod.io/docs/java-in-gitpod/ for a full documentation of Java in GitPod | ||
|
||
FROM gitpod/workspace-full | ||
|
||
# All available versions can be listed using sdk ls java | ||
# More information about SDKMAN available at https://github.com/sdkman/sdkman-cli#sdkman-cli | ||
RUN bash -c ". /home/gitpod/.sdkman/bin/sdkman-init.sh \ | ||
&& sdk install java 18.0.1.1-open" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
image: | ||
file: .gitpod.Dockerfile | ||
tasks: | ||
- init: ./gradlew assemble | ||
jetbrains: | ||
intellij: | ||
plugins: | ||
- CheckStyle-IDEA | ||
- zielu.gittoolbox | ||
vscode: | ||
extensions: | ||
- redhat.java | ||
- richardwillis.vscode-gradle | ||
- vscjava.vscode-java-debug | ||
- kiteco.kite | ||
- DavidAnson.vscode-markdownlint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 0 additions & 42 deletions
42
src/main/java/org/jabref/gui/edit/MassSetFieldsAction.java
This file was deleted.
Oops, something went wrong.
245 changes: 0 additions & 245 deletions
245
src/main/java/org/jabref/gui/edit/MassSetFieldsDialog.java
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
...ain/java/org/jabref/gui/edit/automaticfiededitor/AbstractAutomaticFieldEditorTabView.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.jabref.gui.edit.automaticfiededitor; | ||
|
||
import javafx.scene.layout.AnchorPane; | ||
|
||
public abstract class AbstractAutomaticFieldEditorTabView extends AnchorPane implements AutomaticFieldEditorTab { | ||
|
||
@Override | ||
public AnchorPane getContent() { | ||
return this; | ||
} | ||
} |
Oops, something went wrong.