removing unused local variables
[org.ibex.core.git] / src / org / ibex / js / Lexer.java
index bf350db..5aab728 100644 (file)
@@ -202,7 +202,6 @@ class Lexer implements Tokens {
     private int getString(int c) throws IOException {
         StringBuffer stringBuf = null;
         int quoteChar = c;
-        int val = 0;
         c = in.read();
         in.startString(); // start after the first "
         while(c != quoteChar) {