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 90E951054F for ; Mon, 14 Oct 2013 17:18:07 +0000 (UTC) Received: (qmail 36207 invoked by uid 500); 14 Oct 2013 17:17:31 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 35405 invoked by uid 500); 14 Oct 2013 17:17:14 -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 34631 invoked by uid 99); 14 Oct 2013 17:16:57 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Oct 2013 17:16:57 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 9FE6D8B3558; Mon, 14 Oct 2013 17:16:56 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bfederle@apache.org To: commits@cloudstack.apache.org Date: Mon, 14 Oct 2013 17:18:04 -0000 Message-Id: <9385fdacbe6841189122c48da379a7a6@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [72/81] [abbrv] git commit: updated refs/heads/ui-restyle to e901b82 removed PasswordGenerator.main unused method, probably for debugging/testing purposes Signed-off-by: Laszlo Hornyak Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b76e501d Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b76e501d Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b76e501d Branch: refs/heads/ui-restyle Commit: b76e501d265690b8d035fc01d44aea95d4fdfed1 Parents: 5cc411a Author: Laszlo Hornyak Authored: Thu Oct 10 20:22:22 2013 +0200 Committer: Laszlo Hornyak Committed: Fri Oct 11 20:09:37 2013 +0200 ---------------------------------------------------------------------- utils/src/com/cloud/utils/PasswordGenerator.java | 9 --------- 1 file changed, 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b76e501d/utils/src/com/cloud/utils/PasswordGenerator.java ---------------------------------------------------------------------- diff --git a/utils/src/com/cloud/utils/PasswordGenerator.java b/utils/src/com/cloud/utils/PasswordGenerator.java index 022afd0..2e1cb17 100644 --- a/utils/src/com/cloud/utils/PasswordGenerator.java +++ b/utils/src/com/cloud/utils/PasswordGenerator.java @@ -95,13 +95,4 @@ public class PasswordGenerator { return newPassword.toString(); } - - public static void main(String [] args) { - for (int i=0; i < 100; i++) { - System.out.println("PSK: " + generatePresharedKey(24)); - } - for (int i=0; i < 100; i++) { - System.out.println("Password: " + generateRandomPassword(6)); - } - } }