Navigation Menu

Skip to content

Commit

Permalink
Removed needless explicitly qualified vecmath types
Browse files Browse the repository at this point in the history
Signed-off-by: maclean <gilleain.torrance@gmail.com>
  • Loading branch information
egonw committed Sep 18, 2011
1 parent 191ea5d commit c1a69a4
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/main/org/openscience/cdk/isomorphism/matchers/QueryAtom.java
Expand Up @@ -44,18 +44,18 @@ public abstract class QueryAtom extends QueryChemObject implements IQueryAtom {
* A 2D point specifying the location of this atom in a 2D coordinate
* space.
*/
protected javax.vecmath.Point2d point2d = (Point2d) CDKConstants.UNSET;
protected Point2d point2d = (Point2d) CDKConstants.UNSET;

/**
* A 3 point specifying the location of this atom in a 3D coordinate
* space.
*/
protected javax.vecmath.Point3d point3d = (Point3d) CDKConstants.UNSET;
protected Point3d point3d = (Point3d) CDKConstants.UNSET;

/**
* A 3 point specifying the location of this atom in a crystal unit cell.
*/
protected javax.vecmath.Point3d fractionalPoint3d = (Point3d) CDKConstants.UNSET;
protected Point3d fractionalPoint3d = (Point3d) CDKConstants.UNSET;

/**
* The number of implicitly bound hydrogen atoms for this atom.
Expand Down Expand Up @@ -190,7 +190,7 @@ public Integer getImplicitHydrogenCount() {
*
* @see #getPoint2d
*/
public void setPoint2d(javax.vecmath.Point2d point2d) {
public void setPoint2d(Point2d point2d) {
this.point2d = point2d;
notifyChanged();
}
Expand All @@ -203,7 +203,7 @@ public void setPoint2d(javax.vecmath.Point2d point2d) {
*
* @see #getPoint3d
*/
public void setPoint3d(javax.vecmath.Point3d point3d) {
public void setPoint3d(Point3d point3d) {
this.point3d = point3d;
notifyChanged();
}
Expand All @@ -216,7 +216,7 @@ public void setPoint3d(javax.vecmath.Point3d point3d) {
* @see #getFractionalPoint3d
* @see org.openscience.cdk.Crystal
*/
public void setFractionalPoint3d(javax.vecmath.Point3d point3d) {
public void setFractionalPoint3d(Point3d point3d) {
this.fractionalPoint3d = point3d;
notifyChanged();
}
Expand All @@ -241,7 +241,7 @@ public void setStereoParity(Integer stereoParity) {
*
* @see #setPoint2d
*/
public javax.vecmath.Point2d getPoint2d() {
public Point2d getPoint2d() {
return this.point2d;
}
/**
Expand All @@ -252,7 +252,7 @@ public javax.vecmath.Point2d getPoint2d() {
*
* @see #setPoint3d
*/
public javax.vecmath.Point3d getPoint3d() {
public Point3d getPoint3d() {
return this.point3d;
}

Expand All @@ -265,7 +265,7 @@ public javax.vecmath.Point3d getPoint3d() {
* @see #setFractionalPoint3d
* @see org.openscience.cdk.CDKConstants for predefined values.
*/
public javax.vecmath.Point3d getFractionalPoint3d() {
public Point3d getFractionalPoint3d() {
return this.fractionalPoint3d;
}

Expand Down

0 comments on commit c1a69a4

Please sign in to comment.