Spelling errors fixed.

main
Jessica McAuslin 9 years ago
parent cf0adb8511
commit 6e841f180d

@ -124,9 +124,9 @@ public class BoatXMLReader extends XMLReader {
} }
for (int i = 0; i < boat.getChildNodes().getLength(); i++) { for (int i = 0; i < boat.getChildNodes().getLength(); i++) {
Node GPSPosition = boat.getChildNodes().item(i); Node GPSposition = boat.getChildNodes().item(i);
if (GPSPosition.getNodeName().equals("GPSPosition")) if (GPSposition.getNodeName().equals("GPSposition"))
readBoatPositionInformation(sourceID, GPSPosition); readBoatPositionInformation(sourceID, GPSposition);
} }
} }
} }
@ -136,10 +136,10 @@ public class BoatXMLReader extends XMLReader {
* Reads the positional information about a boat * Reads the positional information about a boat
* Ignored values: FlagPosition, MastTop, Z value of GPSPosition * Ignored values: FlagPosition, MastTop, Z value of GPSPosition
* @param sourceID The source ID of the boat. * @param sourceID The source ID of the boat.
* @param GPSPosition The relative GPS position of the boat. * @param GPSposition The relative GPS position of the boat.
*/ */
private void readBoatPositionInformation(int sourceID, Node GPSPosition) { private void readBoatPositionInformation(int sourceID, Node GPSposition) {
// TODO Get relative point before implementing. (GPSPosition is based // TODO Get relative point before implementing. (GPSposition is based
// off a relative point). // off a relative point).
} }

Loading…
Cancel
Save