Skip to content

Commit

Permalink
Deprecate 'experimental' method that now serves little purpose.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay committed Jun 5, 2016
1 parent fb7e2a4 commit 3ec5fb4
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,9 @@ public IAtomContainer getMolecule() {
*
* @throws CDKException if an error occurs
* @see #generateCoordinates
* @deprecated use {@link #generateCoordinates()}
*/
@Deprecated
public void generateExperimentalCoordinates() throws CDKException {
generateExperimentalCoordinates(DEFAULT_BOND_VECTOR);
}
Expand All @@ -308,7 +310,9 @@ public void generateExperimentalCoordinates() throws CDKException {
*
* @param firstBondVector the vector of the first bond to lay out
* @throws CDKException if an error occurs
* @deprecated use {@link #generateCoordinates()}
*/
@Deprecated
public void generateExperimentalCoordinates(Vector2d firstBondVector) throws CDKException {
// first make a shallow copy: Atom/Bond references are kept
IAtomContainer original = molecule;
Expand Down

0 comments on commit 3ec5fb4

Please sign in to comment.