fix constructor to use passed in value

This commit is contained in:
Chiradeep Vittal 2010-11-17 15:31:16 -08:00
parent 8c8188afec
commit c871ef4acf
1 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,8 @@ public class FirewallRuleVO {
this.privateIpAddress = privateIpAddress;
this.privatePort = privatePort;
this.enabled = enabled;
this.protocol = protocol;
this.protocol = protocol;
this.forwarding = forwarding;
}
public FirewallRuleVO(FirewallRuleVO fwRule) {