Skip to content

Commit

Permalink
fix import in test and checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr committed Sep 7, 2020
1 parent c72c6cc commit d08943d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/gui/DefaultInjector.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
import org.jabref.gui.util.TaskExecutor;
import org.jabref.logic.journals.JournalAbbreviationRepository;
import org.jabref.logic.protectedterms.ProtectedTermsLoader;
import org.jabref.model.util.FileUpdateMonitor;
import org.jabref.logic.sharelatex.ShareLatexManager;
import org.jabref.model.util.FileUpdateMonitor;
import org.jabref.preferences.PreferencesService;

import com.airhacks.afterburner.injection.Injector;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

public class ShareLatexProjectDialogViewModel{
public class ShareLatexProjectDialogViewModel {

private static final Log LOGGER = LogFactory.getLog(ShareLatexProjectDialogViewModel.class);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ private void parseContents(String message) {

if (message.startsWith("[null,{", message.indexOf("+") + 1)) {
LOGGER.debug("We get a list with all files");
//We get a list with all files
// We get a list with all files

String docIdOfFirstBibtex = parser.getFirstBibTexDatabaseId(message);

Expand Down
3 changes: 1 addition & 2 deletions src/main/java/org/jabref/preferences/JabRefPreferences.java
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,7 @@ private JabRefPreferences() {
// Set DOI to be the default ID entry generator
defaults.put(ID_ENTRY_GENERATOR, DoiFetcher.NAME);


//Sharelatex
// Sharelatex
defaults.put(DEFAULT_NODE, "default");
defaults.put(PARENT_NODE, "jabref-sharelatex");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

import org.junit.jupiter.api.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;


public class ShareLatexJsonMessageTest {

Expand Down

0 comments on commit d08943d

Please sign in to comment.