aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/com/android/volley/mock/TestRequest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/android/volley/mock/TestRequest.java')
-rw-r--r--src/test/java/com/android/volley/mock/TestRequest.java10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/test/java/com/android/volley/mock/TestRequest.java b/src/test/java/com/android/volley/mock/TestRequest.java
index 16bf79e..f397f01 100644
--- a/src/test/java/com/android/volley/mock/TestRequest.java
+++ b/src/test/java/com/android/volley/mock/TestRequest.java
@@ -19,7 +19,6 @@ package com.android.volley.mock;
import com.android.volley.NetworkResponse;
import com.android.volley.Request;
import com.android.volley.Response;
-
import java.util.HashMap;
import java.util.Map;
@@ -43,8 +42,7 @@ public class TestRequest {
}
@Override
- protected void deliverResponse(byte[] response) {
- }
+ protected void deliverResponse(byte[] response) {}
}
/** Test example of a GET request in the deprecated style. */
@@ -78,8 +76,8 @@ public class TestRequest {
}
/**
- * Test example of a POST request in the new style. In the new style, it is possible
- * to have a POST with no body.
+ * Test example of a POST request in the new style. In the new style, it is possible to have a
+ * POST with no body.
*/
public static class Post extends Base {
public Post() {
@@ -103,7 +101,7 @@ public class TestRequest {
}
/**
- * Test example of a PUT request in the new style. In the new style, it is possible to have a
+ * Test example of a PUT request in the new style. In the new style, it is possible to have a
* PUT with no body.
*/
public static class Put extends Base {