diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2020-01-06 17:50:40 -0500 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2020-01-06 17:50:40 -0500 |
| commit | 2673f6a4c2649c299f1fbd340ffb8ac7315ad326 (patch) | |
| tree | 742545f3eaba58f62cdb151b2ce90e3437c25d80 /base/src/main/java/bjc/utils/ioutils | |
| parent | 48a4b3229ee213d4b5b3e1a421a3d862bdf4d227 (diff) | |
General warning cleanup
Just clean up of some warnings/other misc. problems
Diffstat (limited to 'base/src/main/java/bjc/utils/ioutils')
3 files changed, 16 insertions, 4 deletions
diff --git a/base/src/main/java/bjc/utils/ioutils/LineReader.java b/base/src/main/java/bjc/utils/ioutils/LineReader.java index 4463b24..7449670 100644 --- a/base/src/main/java/bjc/utils/ioutils/LineReader.java +++ b/base/src/main/java/bjc/utils/ioutils/LineReader.java @@ -2,6 +2,11 @@ package bjc.utils.ioutils; import java.util.Scanner; +/** + * A line reader + * @author bjculkin + * + */ public class LineReader implements AutoCloseable { private Scanner scn; @@ -9,4 +14,6 @@ public class LineReader implements AutoCloseable { public void close() { scn.close(); } + + // @TODO Implement me - ben, 1/6/20 } diff --git a/base/src/main/java/bjc/utils/ioutils/properties/Property.java b/base/src/main/java/bjc/utils/ioutils/properties/Property.java index 341cfb6..7cc9369 100644 --- a/base/src/main/java/bjc/utils/ioutils/properties/Property.java +++ b/base/src/main/java/bjc/utils/ioutils/properties/Property.java @@ -1,5 +1,7 @@ package bjc.utils.ioutils.properties; +// @TODO implement me - ben, 1/6/20 +@SuppressWarnings("javadoc") public class Property { public String name; public String comment; diff --git a/base/src/main/java/bjc/utils/ioutils/properties/PropertyDB.java b/base/src/main/java/bjc/utils/ioutils/properties/PropertyDB.java index 8f0165b..0996b58 100644 --- a/base/src/main/java/bjc/utils/ioutils/properties/PropertyDB.java +++ b/base/src/main/java/bjc/utils/ioutils/properties/PropertyDB.java @@ -1,8 +1,11 @@ package bjc.utils.ioutils.properties; -import bjc.utils.esodata.Directory; -import bjc.utils.esodata.SimpleDirectory; - +/** + * A database of properties. + * + * @author bjculkin + * + */ public class PropertyDB { - + // @TODO Implement me :) - Ben Culkin, 1/5/20 } |
