You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ji...@apache.org on 2016/01/26 01:52:34 UTC

[3/3] mesos git commit: Removed an unused variable in jvm.cpp.

Removed an unused variable in jvm.cpp.

Review: https://reviews.apache.org/r/42766/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/1f396b9a
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/1f396b9a
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/1f396b9a

Branch: refs/heads/master
Commit: 1f396b9a17bec80fc6fa4f3a47322898faee3a98
Parents: 1aeed33
Author: Neil Conway <ne...@gmail.com>
Authored: Mon Jan 25 16:52:14 2016 -0800
Committer: Jie Yu <yu...@gmail.com>
Committed: Mon Jan 25 16:52:14 2016 -0800

----------------------------------------------------------------------
 src/jvm/jvm.cpp | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/1f396b9a/src/jvm/jvm.cpp
----------------------------------------------------------------------
diff --git a/src/jvm/jvm.cpp b/src/jvm/jvm.cpp
index d831c9d..909d34a 100644
--- a/src/jvm/jvm.cpp
+++ b/src/jvm/jvm.cpp
@@ -580,7 +580,6 @@ jmethodID Jvm::findMethod(
 
   std::ostringstream signature;
   signature << "(";
-  std::vector<Jvm::Class>::iterator args;
   foreach (const Jvm::Class& type, argTypes) {
     signature << type.signature();
   }