aboutsummaryrefslogtreecommitdiffstats
path: root/lib/jinterface/java_src/com/ericsson/otp/erlang/OtpInputStream.java
diff options
context:
space:
mode:
authorVlad Dumitrescu <[email protected]>2014-09-10 09:56:50 +0200
committerVlad Dumitrescu <[email protected]>2014-09-11 21:24:11 +0200
commit9a534810d69d6f38eb3e1b0466900057265a30f0 (patch)
tree8a752ac8a027d65db844c8dc2b37359a854bc626 /lib/jinterface/java_src/com/ericsson/otp/erlang/OtpInputStream.java
parent95f0e8399320d010dfaf88ec3a987d6bc833f440 (diff)
downloadotp-9a534810d69d6f38eb3e1b0466900057265a30f0.tar.gz
otp-9a534810d69d6f38eb3e1b0466900057265a30f0.tar.bz2
otp-9a534810d69d6f38eb3e1b0466900057265a30f0.zip
remove unused variables
Diffstat (limited to 'lib/jinterface/java_src/com/ericsson/otp/erlang/OtpInputStream.java')
-rw-r--r--lib/jinterface/java_src/com/ericsson/otp/erlang/OtpInputStream.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/jinterface/java_src/com/ericsson/otp/erlang/OtpInputStream.java b/lib/jinterface/java_src/com/ericsson/otp/erlang/OtpInputStream.java
index 5aa1e5a241..6868b8982f 100644
--- a/lib/jinterface/java_src/com/ericsson/otp/erlang/OtpInputStream.java
+++ b/lib/jinterface/java_src/com/ericsson/otp/erlang/OtpInputStream.java
@@ -1049,7 +1049,7 @@ public class OtpInputStream extends ByteArrayInputStream {
}
return new OtpErlangFun(pid, module, index, uniq, freeVars);
} else if (tag == OtpExternal.newFunTag) {
- final int n = read4BE();
+ read4BE();
final int arity = read1();
final byte[] md5 = new byte[16];
readN(md5);