Updated Branches: refs/heads/4.2 6533e6559 -> 238815759
Fixing typo of "createing" that should be "creating" https://issues.apache.org/jira/browse/CLOUDSTACK-3915 Signed-off-by: Prasanna Santhanam <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/23881575 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/23881575 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/23881575 Branch: refs/heads/4.2 Commit: 238815759664eb2a0e8c000389c976a8b1c5b269 Parents: 6533e65 Author: Jonathan Creasy <[email protected]> Authored: Mon Jul 29 14:16:26 2013 -0500 Committer: Prasanna Santhanam <[email protected]> Committed: Tue Jul 30 09:41:05 2013 +0530 ---------------------------------------------------------------------- .../api/command/user/firewall/CreateFirewallRuleCmd.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/23881575/api/src/org/apache/cloudstack/api/command/user/firewall/CreateFirewallRuleCmd.java ---------------------------------------------------------------------- diff --git a/api/src/org/apache/cloudstack/api/command/user/firewall/CreateFirewallRuleCmd.java b/api/src/org/apache/cloudstack/api/command/user/firewall/CreateFirewallRuleCmd.java index b7cb471..ef99c37 100644 --- a/api/src/org/apache/cloudstack/api/command/user/firewall/CreateFirewallRuleCmd.java +++ b/api/src/org/apache/cloudstack/api/command/user/firewall/CreateFirewallRuleCmd.java @@ -255,7 +255,7 @@ public class CreateFirewallRuleCmd extends BaseAsyncCreateCmd implements Firewal @Override public String getEventDescription() { IpAddress ip = _networkService.getIp(ipAddressId); - return ("Createing firewall rule for Ip: " + ip.getAddress() + " for protocol:" + this.getProtocol()); + return ("Creating firewall rule for Ip: " + ip.getAddress() + " for protocol:" + this.getProtocol()); } @Override
