Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/NotificationTest.java

Issue 29349000: Issue 4240 - Put braces on each and every block (Closed)
Patch Set: Created Aug. 2, 2016, 10:59 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/NotificationTest.java
diff --git a/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/NotificationTest.java b/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/NotificationTest.java
index 3dc07e349fae59af53923ed7f500fdb74098818e..70e22139f94df7ea94bfccaab796dccf97cbee85 100644
--- a/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/NotificationTest.java
+++ b/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/NotificationTest.java
@@ -97,7 +97,9 @@ public class NotificationTest extends BaseJsTest {
public ServerResponse httpGET(String url, List<HeaderEntry> headers)
{
if (url.indexOf("/notification.json") < 0)
- return new ServerResponse();
+ {
+ return new ServerResponse();
+ }
ServerResponse response = new ServerResponse();
response.setStatus(ServerResponse.NsStatus.OK);

Powered by Google App Engine
This is Rietveld