Ignore:
Timestamp:
2016-02-10T23:57:06+01:00 (8 years ago)
Author:
Don-vip
Message:

checkstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/preferences/PreferencesReader.java

    r9780 r9783  
    1818import java.util.SortedMap;
    1919import java.util.TreeMap;
     20
    2021import javax.xml.XMLConstants;
    2122import javax.xml.stream.XMLInputFactory;
     
    4445     * Validate the XML.
    4546     * @param f the file
    46      * @throws java.io.IOException
    47      * @throws org.xml.sax.SAXException
     47     * @throws IOException if any I/O error occurs
     48     * @throws SAXException if any SAX error occurs
    4849     */
    4950    public static void validateXML(File f) throws IOException, SAXException {
     
    5657     * Validate the XML.
    5758     * @param in the {@link Reader}
    58      * @throws java.io.IOException
    59      * @throws org.xml.sax.SAXException
     59     * @throws IOException if any I/O error occurs
     60     * @throws SAXException if any SAX error occurs
    6061     */
    6162    public static void validateXML(Reader in) throws IOException, SAXException {
     
    7071     * Parse preferences XML.
    7172     * @param f the file
    72      * @throws IOException
    73      * @throws XMLStreamException
     73     * @throws IOException if any I/O error occurs
     74     * @throws XMLStreamException if any XML stream error occurs
    7475     */
    7576    public void fromXML(File f) throws IOException, XMLStreamException {
     
    8283     * Parse preferences XML.
    8384     * @param in the {@link Reader}
    84      * @throws XMLStreamException
     85     * @throws XMLStreamException if any XML stream error occurs
    8586     */
    8687    public void fromXML(Reader in) throws XMLStreamException {
Note: See TracChangeset for help on using the changeset viewer.