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

Unified Diff: src/org/adblockplus/android/ProxyConfigurationActivity.java

Issue 5662276015095808: Issue 1540 - Utility method for loading text is at the wrong location (Closed)
Patch Set: Created Nov. 6, 2014, 1:06 p.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: src/org/adblockplus/android/ProxyConfigurationActivity.java
diff --git a/src/org/adblockplus/android/ProxyConfigurationActivity.java b/src/org/adblockplus/android/ProxyConfigurationActivity.java
index a5394a2f95dffac401d23edeca66c6924a277978..1a871ad9f7191054a6a51d5d29a12fe333e88506 100644
--- a/src/org/adblockplus/android/ProxyConfigurationActivity.java
+++ b/src/org/adblockplus/android/ProxyConfigurationActivity.java
@@ -21,7 +21,7 @@ public class ProxyConfigurationActivity extends Activity
final StringBuilder info = new StringBuilder();
final int textId = ProxyService.GLOBAL_PROXY_USER_CONFIGURABLE ? R.raw.proxysettings : R.raw.proxysettings_old;
- AdblockPlus.appendRawTextFile(this, info, textId);
+ Utils.appendRawTextFile(this, info, textId);
final String msg = String.format(info.toString(), port);
final TextView tv = (TextView) findViewById(R.id.message_text);

Powered by Google App Engine
This is Rietveld