summaryrefslogtreecommitdiffstats
path: root/pki/base/util/src/com/netscape/cmsutil/radius/NASPortAttribute.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/util/src/com/netscape/cmsutil/radius/NASPortAttribute.java')
-rw-r--r--pki/base/util/src/com/netscape/cmsutil/radius/NASPortAttribute.java12
1 files changed, 5 insertions, 7 deletions
diff --git a/pki/base/util/src/com/netscape/cmsutil/radius/NASPortAttribute.java b/pki/base/util/src/com/netscape/cmsutil/radius/NASPortAttribute.java
index 949fa475..0f7b31e7 100644
--- a/pki/base/util/src/com/netscape/cmsutil/radius/NASPortAttribute.java
+++ b/pki/base/util/src/com/netscape/cmsutil/radius/NASPortAttribute.java
@@ -17,10 +17,8 @@
// --- END COPYRIGHT BLOCK ---
package com.netscape.cmsutil.radius;
-
import java.io.IOException;
-
public class NASPortAttribute extends Attribute {
private int _port = 0;
@@ -39,12 +37,12 @@ public class NASPortAttribute extends Attribute {
}
public byte[] getValue() throws IOException {
- byte[] p = new byte[4];
+ byte[] p = new byte[4];
- p[0] = (byte) ((_port >>> 24) & 0xFF);
- p[1] = (byte) ((_port >>> 16) & 0xFF);
- p[2] = (byte) ((_port >>> 8) & 0xFF);
- p[3] = (byte) (_port & 0xFF);
+ p[0] = (byte) ((_port >>> 24) & 0xFF);
+ p[1] = (byte) ((_port >>> 16) & 0xFF);
+ p[2] = (byte) ((_port >>> 8) & 0xFF);
+ p[3] = (byte) (_port & 0xFF);
return p;
}
}