Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nivieru committed Jan 4, 2016
1 parent 08946d8 commit 192f479
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/sf/jabref/gui/BasePanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -2026,8 +2026,8 @@ private StartStopListAction(FilterList<E> list, Matcher<E> active, Matcher<E> in
}

public void start() {
list.setMatcher(active);
isActive = true;
list.setMatcher(active);
isActive = true;
}

public void stop() {
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/net/sf/jabref/gui/maintable/MainTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,11 @@ public boolean isFloatSearchActive() {
* Adds a sorting rule that floats group hits to the top, and causes non-hits to be grayed out:
*/
public void showFloatGrouping() {
isFloatGroupingActive = true;
isFloatGroupingActive = true;

groupMatcher = GroupMatcher.INSTANCE;
groupComparator = new HitOrMissComparator(groupMatcher);
refreshSorting();
groupMatcher = GroupMatcher.INSTANCE;
groupComparator = new HitOrMissComparator(groupMatcher);
refreshSorting();
}

/**
Expand Down

0 comments on commit 192f479

Please sign in to comment.