Skip to content
This repository was archived by the owner on Jul 21, 2023. It is now read-only.

Commit 082bab2

Browse files
committed
- Update API packages (part 2):
+ com.ning --> org.asynchttpclient + compress package hierarchy to remove now redundant http.client sub-packages.
1 parent a120934 commit 082bab2

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

extras/guava/src/main/java/com/ning/http/client/extra/ListenableFutureAdapter.java renamed to extras/guava/src/main/java/org/asynchttpclient/extra/ListenableFutureAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.extra;
13+
package org.asynchttpclient.extra;
1414

1515
import java.util.concurrent.ExecutionException;
1616
import java.util.concurrent.Executor;

extras/jdeferred/src/main/java/com/ning/http/client/extra/AsyncHttpDeferredObject.java renamed to extras/jdeferred/src/main/java/org/asynchttpclient/extra/AsyncHttpDeferredObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package com.ning.http.client.extra;
16+
package org.asynchttpclient.extra;
1717

1818
import java.io.IOException;
1919

extras/jdeferred/src/main/java/com/ning/http/client/extra/ContentWriteProgress.java renamed to extras/jdeferred/src/main/java/org/asynchttpclient/extra/ContentWriteProgress.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package com.ning.http.client.extra;
16+
package org.asynchttpclient.extra;
1717

1818
public class ContentWriteProgress implements HttpProgress {
1919
private final long amount;

extras/jdeferred/src/main/java/com/ning/http/client/extra/HttpProgress.java renamed to extras/jdeferred/src/main/java/org/asynchttpclient/extra/HttpProgress.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package com.ning.http.client.extra;
16+
package org.asynchttpclient.extra;
1717

1818
public interface HttpProgress {
1919

extras/jdeferred/src/main/java/com/ning/http/client/extra/HttpResponseBodyPartProgress.java renamed to extras/jdeferred/src/main/java/org/asynchttpclient/extra/HttpResponseBodyPartProgress.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package com.ning.http.client.extra;
16+
package org.asynchttpclient.extra;
1717

1818
import org.asynchttpclient.HttpResponseBodyPart;
1919

extras/jdeferred/src/test/java/com/ning/http/client/extra/AsyncHttpTest.java renamed to extras/jdeferred/src/test/java/org/asynchttpclient/extra/AsyncHttpTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package com.ning.http.client.extra;
16+
package org.asynchttpclient.extra;
1717

1818
import java.io.IOException;
1919
import java.util.concurrent.CountDownLatch;
@@ -22,6 +22,8 @@
2222
import junit.framework.Assert;
2323
import junit.framework.TestCase;
2424

25+
import org.asynchttpclient.extra.AsyncHttpDeferredObject;
26+
import org.asynchttpclient.extra.HttpProgress;
2527
import org.jdeferred.DoneCallback;
2628
import org.jdeferred.ProgressCallback;
2729
import org.jdeferred.Promise;

0 commit comments

Comments
 (0)