mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-22 07:28:16 +01:00
cleanup: remove comments and unnecessary ivar
This commit is contained in:
parent
9b88279212
commit
f8077785bc
2 changed files with 3 additions and 11 deletions
|
@ -1,10 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- Declare the contents of this Android application. The namespace
|
||||
attribute brings in the Android platform namespace, and the package
|
||||
supplies a unique name for the application. When writing your
|
||||
own application, the package name must be changed from "com.example.*"
|
||||
to come from a domain that you own or have control over. -->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.eehouse.android.xw4"
|
||||
>
|
||||
|
@ -33,7 +27,7 @@
|
|||
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
||||
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||||
|
||||
<!-- Added for wifi-direct; don't ship until move to 23!!! -->
|
||||
<!-- Required for wifi-direct -->
|
||||
<!-- <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> -->
|
||||
<!-- <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> -->
|
||||
|
||||
|
|
|
@ -25,12 +25,10 @@ import org.eehouse.android.xw4.XWActivity;
|
|||
|
||||
public class LocActivity extends XWActivity {
|
||||
|
||||
private LocDelegate m_dlgt;
|
||||
|
||||
@Override
|
||||
protected void onCreate( Bundle savedInstanceState )
|
||||
{
|
||||
m_dlgt = new LocDelegate( this, savedInstanceState );
|
||||
super.onCreate( savedInstanceState, m_dlgt );
|
||||
super.onCreate( savedInstanceState,
|
||||
new LocDelegate( this, savedInstanceState ) );
|
||||
} // onCreate
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue