uimafit-core/src/main/java/org/apache/uima/fit/util/CasIOUtil.java [120:140]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } 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(os);
    }
  }

  /**
   * @param aCas
   *          the target CAS
   * @param aFile
   *          the file to read from
   * @throws IOException
   *           if there is a problem reading the file
   * @deprecated Use {@link CasIOUtils#load(java.net.URL, CAS)} instead.
   */
  @Deprecated
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uimafit-core/src/main/java/org/apache/uima/fit/util/CasIOUtil.java [174:197]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } 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(os);
    }
  }

  /**
   * This method loads the contents of an XMI or XCAS file into the given CAS. The file type is
   * detected by the extension.
   * 
   * @param aJCas
   *          the target JCas
   * @param aFile
   *          the file to read from
   * @throws IOException
   *           if there is a problem reading the file
   * @deprecated Use {@link CasIOUtils#load(java.net.URL, CAS)} instead.
   */
  @Deprecated
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



