Skip to content

Commit

Permalink
Cleanup interfaces (#4553)
Browse files Browse the repository at this point in the history
  • Loading branch information
Balhau authored and tobiasdiez committed Dec 27, 2018
1 parent 75b147e commit 26cd572
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.jabref.gui.autocompleter;

public interface AutoCompletionStrategy {

public AutoCompletionInput analyze(String input);
AutoCompletionInput analyze(String input);
}
4 changes: 2 additions & 2 deletions src/main/java/org/jabref/preferences/PreferencesService.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ public interface PreferencesService {

void setCustomTabsNameAndFields(String name, String fields, int defNumber);

public void purgeSeries(String prefix, int number);
void purgeSeries(String prefix, int number);

public void updateEntryEditorTabList();
void updateEntryEditorTabList();

List<TemplateExporter> getCustomExportFormats(JournalAbbreviationLoader loader);

Expand Down

0 comments on commit 26cd572

Please sign in to comment.