Skip to content

Commit

Permalink
This fixes issue #12. Thanks for spotting it, mstevens83.
Browse files Browse the repository at this point in the history
A debug output was still in the release code and has been
removed.
#12
  • Loading branch information
berndporr committed Jun 28, 2018
1 parent 30f1c12 commit 2ce60ed
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/uk/me/berndporr/iirj/LayoutBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ public void addPoleZeroConjugatePairs(Complex pole, Complex zero) {
}

public void add(ComplexPair poles, ComplexPair zeros) {
System.out.println("LayoutBase add() numPoles="+m_numPoles);
m_pair[m_numPoles / 2] = new PoleZeroPair(poles.first, zeros.first,
poles.second, zeros.second);
m_numPoles += 2;
Expand Down

0 comments on commit 2ce60ed

Please sign in to comment.