-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
EPUB import (v2) #13217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
EPUB import (v2) #13217
Conversation
jabgui/src/main/java/org/jabref/gui/preferences/keybindings/KeyBindingsTabViewModel.java
Show resolved
Hide resolved
jablib/src/main/java/org/jabref/logic/externalfiles/ExternalFilesContentImporter.java
Show resolved
Hide resolved
jablib/src/main/java/org/jabref/logic/importer/fileformat/EpubImporter.java
Outdated
Show resolved
Hide resolved
jablib/src/main/java/org/jabref/logic/importer/fileformat/EpubImporter.java
Outdated
Show resolved
Hide resolved
jablib/src/test/java/org/jabref/logic/importer/fileformat/EpubImporterFilesTest.java
Outdated
Show resolved
Hide resolved
jablib/src/test/java/org/jabref/logic/importer/fileformat/EpubImporterFilesTest.java
Outdated
Show resolved
Hide resolved
jablib/src/test/java/org/jabref/logic/importer/fileformat/EpubImporterFilesTest.java
Outdated
Show resolved
Hide resolved
jablib/src/test/java/org/jabref/logic/importer/fileformat/EpubImporterTest.java
Show resolved
Hide resolved
jablib/src/test/java/org/jabref/logic/importer/fileformat/EpubImporterTest.java
Show resolved
Hide resolved
Trag bot actually gave good comments |
Your pull request needs to link an issue correctly. To ease organizational workflows, please link this pull-request to the issue with syntax as described in https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue:
Examples
|
JUnit tests of You can then run these tests in IntelliJ to reproduce the failing tests locally. We offer a quick test running howto in the section Final build system checks in our setup guide. |
@@ -963,6 +958,14 @@ public BibEntry withField(Field field, String value) { | |||
return this; | |||
} | |||
|
|||
public BibEntry withField(Field field, Optional<String> value) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The method uses Objects.requireNonNull which should be replaced with @nonnull annotation as per the guidelines.
@@ -997,6 +1000,12 @@ public BibEntry withUserComments(String commentsBeforeEntry) { | |||
return this; | |||
} | |||
|
|||
public BibEntry withKeywords(Collection<String> keywords, Character delimiter) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The method uses Objects.requireNonNull which should be replaced with @nonnull annotation as per the guidelines.
Closes #12457.
Changes:
OptionalObjectProperty
to JabLib (it was in JabGui previously).Steps to test
Mandatory checks
CHANGELOG.md
described in a way that is understandable for the average user (if change is visible to the user)