diff options
-rw-r--r-- | ardor3d-extras/src/main/java/com/ardor3d/extension/model/off/OffImporter.java | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/ardor3d-extras/src/main/java/com/ardor3d/extension/model/off/OffImporter.java b/ardor3d-extras/src/main/java/com/ardor3d/extension/model/off/OffImporter.java index 4a10098..10d837a 100644 --- a/ardor3d-extras/src/main/java/com/ardor3d/extension/model/off/OffImporter.java +++ b/ardor3d-extras/src/main/java/com/ardor3d/extension/model/off/OffImporter.java @@ -199,29 +199,6 @@ public class OffImporter { commentChar('#'); } - /** - * Gets a number from the stream. Need to extract numbers since they may be in scientific notation. The number - * is returned in nval. - * - * @return Logical-true if successful, else logical-false. - */ -// protected boolean getNumber() { -// try { -// nextToken(); -// if (ttype != StreamTokenizer.TT_WORD) { -// return false; -// } -// nval = Double.valueOf(sval).doubleValue(); -// } catch (final IOException e) { -// System.err.println(e.getMessage()); -// return false; -// } catch (final NumberFormatException e) { -// System.err.println(e.getMessage()); -// return false; -// } -// return true; -// } - @Override public void close() throws IOException { reader.close(); |