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

Side by Side Diff: src/org/adblockplus/android/ConfigurationActivity.java

Issue 6002714978811904: Line endings, whitespace, imports and casts cleanup (Closed)
Patch Set: Created March 31, 2014, 1:52 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <http://adblockplus.org/>, 2 * This file is part of Adblock Plus <http://adblockplus.org/>,
3 * Copyright (C) 2006-2014 Eyeo GmbH 3 * Copyright (C) 2006-2014 Eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 13 matching lines...) Expand all
24 import android.text.Html; 24 import android.text.Html;
25 import android.view.View; 25 import android.view.View;
26 import android.widget.TextView; 26 import android.widget.TextView;
27 27
28 /** 28 /**
29 * Displays configuration warning message. 29 * Displays configuration warning message.
30 */ 30 */
31 public class ConfigurationActivity extends Activity 31 public class ConfigurationActivity extends Activity
32 { 32 {
33 private int port; 33 private int port;
34 34
35 @Override 35 @Override
36 public void onCreate(Bundle savedInstanceState) 36 public void onCreate(Bundle savedInstanceState)
37 { 37 {
38 super.onCreate(savedInstanceState); 38 super.onCreate(savedInstanceState);
39 setContentView(R.layout.configuration); 39 setContentView(R.layout.configuration);
40 port = getIntent().getIntExtra("port", 0); 40 port = getIntent().getIntExtra("port", 0);
41 String msg1 = getString(R.string.msg_notraffic); 41 String msg1 = getString(R.string.msg_notraffic);
42 String msg2 = getString(R.string.msg_configuration); 42 String msg2 = getString(R.string.msg_configuration);
43 ((TextView) findViewById(R.id.message_text)).setText(Html.fromHtml(msg1 + " " + msg2)); 43 ((TextView) findViewById(R.id.message_text)).setText(Html.fromHtml(msg1 + " " + msg2));
44 } 44 }
(...skipping 12 matching lines...) Expand all
57 } 57 }
58 else 58 else
59 { 59 {
60 Uri uri = Uri.parse(getString(R.string.configuring_proxy_url)); 60 Uri uri = Uri.parse(getString(R.string.configuring_proxy_url));
61 intent = new Intent(Intent.ACTION_VIEW, uri); 61 intent = new Intent(Intent.ACTION_VIEW, uri);
62 } 62 }
63 startActivity(intent); 63 startActivity(intent);
64 finish(); 64 finish();
65 } 65 }
66 } 66 }
OLDNEW
« no previous file with comments | « src/org/adblockplus/android/AdvancedPreferences.java ('k') | src/org/adblockplus/android/Preferences.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld