Skip to content

Commit

Permalink
Merge branch 'release/v2.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
dbolotin committed Nov 10, 2016
2 parents 2b0f47b + 9ed9388 commit 99c2af6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

MiXCR 2.0.2 (10 Nov 2016)
========================

-- Fixes NPE in `exportClones` action


MiXCR 2.0.1 ( 8 Nov 2016)
========================

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<groupId>com.milaboratory</groupId>
<artifactId>mixcr</artifactId>
<version>2.0.1</version>
<version>2.0.2</version>
<packaging>jar</packaging>
<name>MiXCR</name>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public boolean getFilterStops() {
@Override
public Filter<Clone> getFilter() {
final Filter<Clone> superFilter = super.getFilter();
final CFilter cFilter = new CFilter(filterOutOfFrames, filterStops);
final CFilter cFilter = new CFilter(getFilterOutOfFrames(), getFilterStops());
return new Filter<Clone>() {
@Override
public boolean accept(Clone object) {
Expand Down

0 comments on commit 99c2af6

Please sign in to comment.