From 9ded2dfd915dbe371f295995ed9829e01956a4b7 Mon Sep 17 00:00:00 2001 From: braunch Date: Mon, 18 Jul 2016 13:22:20 +0200 Subject: [PATCH] Fixed import order and strange diffs --- CHANGELOG.md | 1 - src/main/java/net/sf/jabref/gui/entryeditor/EntryEditor.java | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 947255ac739..51e78f0a7a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -225,7 +225,6 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `# - Swedish is added as a language option (still not a complete translation) - [#969](https://github.com/JabRef/jabref/issues/969) Adding and replacing old event system mechanisms with Google Guava EventBus. - ### Fixed - Fixed [#318](https://github.com/JabRef/jabref/issues/318): Improve normalization of author names - Fixed [#598](https://github.com/JabRef/jabref/issues/598) and [#402](https://github.com/JabRef/jabref/issues/402): No more issues with invalid icons for ExternalFileTypes in global search or after editing the settings diff --git a/src/main/java/net/sf/jabref/gui/entryeditor/EntryEditor.java b/src/main/java/net/sf/jabref/gui/entryeditor/EntryEditor.java index 8a4648b9c6f..fce31985cc1 100644 --- a/src/main/java/net/sf/jabref/gui/entryeditor/EntryEditor.java +++ b/src/main/java/net/sf/jabref/gui/entryeditor/EntryEditor.java @@ -63,7 +63,6 @@ import javax.swing.event.ChangeListener; import javax.swing.text.JTextComponent; -import com.google.common.eventbus.Subscribe; import net.sf.jabref.Globals; import net.sf.jabref.external.WriteXMPEntryEditorAction; import net.sf.jabref.gui.BasePanel; @@ -113,6 +112,8 @@ import net.sf.jabref.model.event.FieldChangedEvent; import net.sf.jabref.preferences.JabRefPreferences; import net.sf.jabref.specialfields.SpecialFieldUpdateListener; + +import com.google.common.eventbus.Subscribe; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory;