Skip to content

Commit

Permalink
Correcting typo in exception
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay committed Aug 1, 2013
1 parent 5e3469f commit 9cd9ce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/org/openscience/cdk/graph/EssentialCycles.java
Expand Up @@ -98,7 +98,7 @@ public EssentialCycles(final int[][] graph) {
*/
EssentialCycles(final RelevantCycles relevant, final InitialCycles initial) {
checkNotNull(relevant, "No RelevantCycles provided");
this.initial = checkNotNull(initial, "No iInitialCycles provided");
this.initial = checkNotNull(initial, "No InitialCycles provided");
this.basis = new GreedyBasis(initial.numberOfCycles(),
initial.numberOfEdges());
this.essential = new ArrayList<Cycle>();
Expand Down

0 comments on commit 9cd9ce4

Please sign in to comment.