File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
api/src/main/java/org/asynchttpclient Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 32
32
*/
33
33
public class Realm {
34
34
35
- private static final String NC = "00000001" ;
35
+ private static final String DEFAULT_NC = "00000001" ;
36
36
37
37
private final String principal ;
38
38
private final String password ;
@@ -263,7 +263,7 @@ public static class RealmBuilder {
263
263
private String response = "" ;
264
264
private String opaque = "" ;
265
265
private String qop = "auth" ;
266
- private String nc = "00000001" ;
266
+ private String nc = DEFAULT_NC ;
267
267
private String cnonce = "" ;
268
268
private Uri uri ;
269
269
private String methodName = "GET" ;
@@ -565,7 +565,7 @@ private void newResponse() {
565
565
566
566
if (isNonEmpty (qop )) {
567
567
//qop ="auth" or "auth-int"
568
- sb .append (NC )//
568
+ sb .append (nc )//
569
569
.append (':' )//
570
570
.append (cnonce )//
571
571
.append (':' )//
You can’t perform that action at this time.
0 commit comments