Skip to content

Commit

Permalink
Another Atom implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay committed Feb 18, 2018
1 parent 22cb683 commit d8b6303
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,11 @@ public Iterable<IBond> bonds() {

@Override
public int getBondCount() {
return 0;
return 1;
}

@Override
public IBond getBond(IAtom atom) {
throw new UnsupportedOperationException();
}
}

0 comments on commit d8b6303

Please sign in to comment.