|
|
|
|
@ -9,7 +9,6 @@ import seng302.XMLReader;
|
|
|
|
|
import javax.xml.parsers.ParserConfigurationException;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
import java.text.ParseException;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
@ -28,7 +27,6 @@ public class BoatXMLReader extends XMLReader {
|
|
|
|
|
* @throws IOException error
|
|
|
|
|
* @throws SAXException error
|
|
|
|
|
* @throws ParserConfigurationException error
|
|
|
|
|
* @throws ParseException error
|
|
|
|
|
*/
|
|
|
|
|
public BoatXMLReader(String filePath) throws IOException, SAXException, ParserConfigurationException {
|
|
|
|
|
this(filePath, true);
|
|
|
|
|
@ -41,7 +39,6 @@ public class BoatXMLReader extends XMLReader {
|
|
|
|
|
* @throws IOException error
|
|
|
|
|
* @throws SAXException error
|
|
|
|
|
* @throws ParserConfigurationException error
|
|
|
|
|
* @throws ParseException error
|
|
|
|
|
*/
|
|
|
|
|
public BoatXMLReader(String filePath, boolean read) throws IOException, SAXException, ParserConfigurationException {
|
|
|
|
|
super(filePath);
|
|
|
|
|
|