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

Unified Diff: libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/UpdateCheckTest.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
« no previous file with comments | « libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/NotificationTest.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/UpdateCheckTest.java
diff --git a/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/UpdateCheckTest.java b/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/UpdateCheckTest.java
index 2ffe0639fc6651be71df6d03ac0ce349c7c7bc29..c53328ba6c4d3a4a0027ce286fa35666930b58fe 100644
--- a/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/UpdateCheckTest.java
+++ b/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/UpdateCheckTest.java
@@ -44,7 +44,9 @@ public class UpdateCheckTest extends BaseJsTest
public ServerResponse httpGET(String url, List<HeaderEntry> headers)
{
if (url.indexOf("easylist") >= 0)
- return super.httpGET(url, headers);
+ {
+ return super.httpGET(url, headers);
+ }
previousRequestUrl = url;
return response;
« no previous file with comments | « libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/NotificationTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld