uimafit-core/src/main/java/org/apache/uima/fit/util/CasIOUtil.java [92:114]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } catch (SAXException e) {
      IOException ioe = new IOException(e.getMessage());
      ioe.initCause(e);
      throw ioe; // NOPMD
      // If we were using Java 1.6 and add the wrapped exception to the IOException
      // constructor, we would not get a warning here
    } finally {
      closeQuietly(is);
    }
  }

  /**
   * 
   * @param aCas
   *          the source CAS
   * @param aFile
   *          the file to write to
   * @throws IOException
   *           if there is a problem writing the file
   * @deprecated Use {@link CasIOUtils#save(CAS, OutputStream, org.apache.uima.cas.SerialFormat)}
   *             with {@link SerialFormat#XMI} instead.
   */
  @Deprecated
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uimafit-core/src/main/java/org/apache/uima/fit/util/CasIOUtil.java [146:168]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } catch (SAXException e) {
      IOException ioe = new IOException(e.getMessage());
      ioe.initCause(e);
      throw ioe; // NOPMD
      // If we were using Java 1.6 and add the wrapped exception to the IOException
      // constructor, we would not get a warning here
    } finally {
      closeQuietly(is);
    }
  }

  /**
   * 
   * @param aCas
   *          the source CAS
   * @param aFile
   *          the file to write to
   * @throws IOException
   *           if there is a problem writing the file
   * @deprecated Use {@link CasIOUtils#save(CAS, OutputStream, org.apache.uima.cas.SerialFormat)}
   *             with {@link SerialFormat#XCAS} instead.
   */
  @Deprecated
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



