Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E757F1859A for ; Fri, 14 Aug 2015 19:47:24 +0000 (UTC) Received: (qmail 84509 invoked by uid 500); 14 Aug 2015 19:47:24 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 84374 invoked by uid 500); 14 Aug 2015 19:47:24 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 84242 invoked by uid 99); 14 Aug 2015 19:47:24 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Aug 2015 19:47:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 457B0E188E; Fri, 14 Aug 2015 19:47:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: remi@apache.org To: commits@cloudstack.apache.org Date: Fri, 14 Aug 2015 19:47:27 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [04/30] git commit: updated refs/heads/master to 64ff67d CLOUDSTACK-8656: dummy main removed Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b060c660 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b060c660 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b060c660 Branch: refs/heads/master Commit: b060c66096bff432d275dcff865673c4c2d8e5cb Parents: 27960b4 Author: Daan Hoogland Authored: Tue Aug 4 13:35:30 2015 +0200 Committer: Daan Hoogland Committed: Tue Aug 4 13:35:30 2015 +0200 ---------------------------------------------------------------------- .../src/com/cloud/cluster/ClusterServiceServletImpl.java | 11 ----------- 1 file changed, 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b060c660/framework/cluster/src/com/cloud/cluster/ClusterServiceServletImpl.java ---------------------------------------------------------------------- diff --git a/framework/cluster/src/com/cloud/cluster/ClusterServiceServletImpl.java b/framework/cluster/src/com/cloud/cluster/ClusterServiceServletImpl.java index 9b34724..ec8b908 100644 --- a/framework/cluster/src/com/cloud/cluster/ClusterServiceServletImpl.java +++ b/framework/cluster/src/com/cloud/cluster/ClusterServiceServletImpl.java @@ -134,15 +134,4 @@ public class ClusterServiceServletImpl implements ClusterService { return s_client; } - // for test purpose only - public static void main(final String[] args) { - /* - ClusterServiceServletImpl service = new ClusterServiceServletImpl("http://localhost:9090/clusterservice", 300); - try { - String result = service.execute("test", 1, "{ p1:v1, p2:v2 }", true); - System.out.println(result); - } catch (RemoteException e) { - } - */ - } }