Hi,

I just synchronized and did a clean build, which failed. I got the message that the 

  Atom cloneAtom() {
    try {
      return (Atom)super.clone();
    } catch (CloneNotSupportedException cnse) {
      return null;
    }
  }

has an
 
Unreachable catch block for CloneNotSupportedException. This exception is never thrown from the try statement body

If I have Eclipse fix it by changing the code to:

Atom cloneAtom() {
    return (Atom)super.clone();
}

everything works...

Since the vecmath source is not included, I can not check whether or not the javax.vecmath.tuple3f.clone() does indeed not throw a CloneNotSupportedException, but the documentation at http://java.sun.com/products/java-media/3D/forDevelopers/J3D_1_3_API/j3dapi/javax/vecmath/Tuple3f.html#clone() suggests that it should only throw and OutOfMemoryError...

Am I the only one for which the build did not work? I checked to see whether I could find an Eclipse build option that doesn't make something like this fail the build of the project.

René

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Jmol-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jmol-developers

Reply via email to