Committed by
Gerrit Code Review
Fixed router and domain address order in IpAssignment build method
Change-Id: I3941c88f3b27bda0621c7a5e7fa56935fb924998
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -232,7 +232,7 @@ public final class IpAssignment { | ... | @@ -232,7 +232,7 @@ public final class IpAssignment { |
232 | public IpAssignment build() { | 232 | public IpAssignment build() { |
233 | validateInputs(); | 233 | validateInputs(); |
234 | return new IpAssignment(ipAddress, leasePeriod, timeStamp, assignmentStatus, subnetMask, | 234 | return new IpAssignment(ipAddress, leasePeriod, timeStamp, assignmentStatus, subnetMask, |
235 | - dhcpServer, domainServer, routerAddress, rangeNotEnforced); | 235 | + dhcpServer, routerAddress, domainServer, rangeNotEnforced); |
236 | } | 236 | } |
237 | 237 | ||
238 | public Builder ipAddress(Ip4Address addr) { | 238 | public Builder ipAddress(Ip4Address addr) { | ... | ... |
-
Please register or login to post a comment