You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2014/03/14 18:50:48 UTC

git commit: updated refs/heads/master to 3aee404

Repository: cloudstack
Updated Branches:
  refs/heads/master 384eeaf79 -> 3aee404a4


findbugs: removed unused variable

Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/3aee404a
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/3aee404a
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/3aee404a

Branch: refs/heads/master
Commit: 3aee404a494fc0667d0a74dad052eca2d4cafa08
Parents: 384eeaf
Author: Daan Hoogland <da...@onecht.net>
Authored: Fri Mar 14 18:50:43 2014 +0100
Committer: Daan Hoogland <da...@onecht.net>
Committed: Fri Mar 14 18:50:43 2014 +0100

----------------------------------------------------------------------
 server/src/com/cloud/network/rules/RulesManagerImpl.java | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/3aee404a/server/src/com/cloud/network/rules/RulesManagerImpl.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/network/rules/RulesManagerImpl.java b/server/src/com/cloud/network/rules/RulesManagerImpl.java
index 9a76219..13f6306 100755
--- a/server/src/com/cloud/network/rules/RulesManagerImpl.java
+++ b/server/src/com/cloud/network/rules/RulesManagerImpl.java
@@ -1015,7 +1015,6 @@ public class RulesManagerImpl extends ManagerBase implements RulesManager, Rules
         Ternary<Long, Boolean, ListProjectResourcesCriteria> domainIdRecursiveListProject = new Ternary<Long, Boolean, ListProjectResourcesCriteria>(domainId, isRecursive, null);
         _accountMgr.buildACLSearchParameters(caller, id, accountName, projectId, permittedDomains, permittedAccounts, permittedResources, domainIdRecursiveListProject, listAll,
                 false, "listIpForwardingRules");
-        domainId = domainIdRecursiveListProject.first();
         isRecursive = domainIdRecursiveListProject.second();
         ListProjectResourcesCriteria listProjectResourcesCriteria = domainIdRecursiveListProject.third();