Skip to content

Commit

Permalink
update some comments after PR #1742
Browse files Browse the repository at this point in the history
  • Loading branch information
abyrd committed Feb 10, 2015
1 parent 5a36444 commit 9a92edd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/conveyal/gtfs/model/Entity.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ protected int getIntField(String column, boolean required, int min, int max) thr
* @return the time value in seconds since midnight
*/
protected int getTimeField(String column, boolean required) throws IOException {
String str = getFieldCheckRequired(column, required); // All time fields are required fields
String str = getFieldCheckRequired(column, required);
int val = INT_MISSING;

if (str != null) {
Expand Down Expand Up @@ -193,7 +193,7 @@ protected double getDoubleField(String column, boolean required, double min, dou

/**
* Used to check referential integrity.
* TODO Return value is not yet used, but could allow entities to point to each other directly rather than
* Return value is not used, but could allow entities to point to each other directly rather than
* using indirection through string-keyed maps.
*/
protected <K, V> V getRefField(String column, boolean required, Map<K, V> target) throws IOException {
Expand Down

0 comments on commit 9a92edd

Please sign in to comment.