You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 28, 2018. It is now read-only.
Copy file name to clipboardExpand all lines: connectors/apache-connector/src/main/java/org/glassfish/jersey/apache/connector/ApacheConnectorProvider.java
+14-22Lines changed: 14 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
/*
2
2
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3
3
*
4
-
* Copyright (c) 2013-2014 Oracle and/or its affiliates. All rights reserved.
4
+
* Copyright (c) 2013-2015 Oracle and/or its affiliates. All rights reserved.
5
5
*
6
6
* The contents of this file are subject to the terms of either the GNU
7
7
* General Public License Version 2 only ("GPL") or the Common Development
Copy file name to clipboardExpand all lines: connectors/apache-connector/src/test/java/org/glassfish/jersey/apache/connector/UnderlyingCookieStoreAccessTest.java
+7-9Lines changed: 7 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
/*
2
2
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3
3
*
4
-
* Copyright (c) 2014 Oracle and/or its affiliates. All rights reserved.
4
+
* Copyright (c) 2014-2015 Oracle and/or its affiliates. All rights reserved.
5
5
*
6
6
* The contents of this file are subject to the terms of either the GNU
7
7
* General Public License Version 2 only ("GPL") or the Common Development
@@ -39,14 +39,14 @@
39
39
*/
40
40
packageorg.glassfish.jersey.apache.connector;
41
41
42
-
importorg.apache.http.client.CookieStore;
43
-
importorg.glassfish.jersey.client.ClientConfig;
44
-
importorg.junit.Test;
45
-
46
42
importjavax.ws.rs.client.Client;
47
43
importjavax.ws.rs.client.ClientBuilder;
48
44
importjavax.ws.rs.client.WebTarget;
49
45
46
+
importorg.glassfish.jersey.client.ClientConfig;
47
+
48
+
importorg.apache.http.client.CookieStore;
49
+
importorg.junit.Test;
50
50
importstaticorg.junit.Assert.assertNotNull;
51
51
importstaticorg.junit.Assert.assertSame;
52
52
@@ -69,9 +69,7 @@ public void testCookieStoreInstanceAccess() {
69
69
70
70
assertNotNull("CookieStore instance set on JerseyClient should not be null.", csOnClient);
71
71
assertNotNull("CookieStore instance set on JerseyWebTarget should not be null.", csOnTarget);
72
-
assertSame("CookieStore instance set on JerseyClient should be the same instance as the one set on JerseyWebTarget" +
73
-
"(provided the target instance has not been further configured).",
74
-
csOnClient, csOnTarget
75
-
);
72
+
assertSame("CookieStore instance set on JerseyClient should be the same instance as the one set on JerseyWebTarget"
73
+
+ "(provided the target instance has not been further configured).", csOnClient, csOnTarget);
0 commit comments