[Android] Clean up the function CopyAsset in DolphinEmulator.java.
[streamtype].flush() is called when [streamtype].close() is called. No need to null the references either after calling close(), the garbage collection will take care of it.
This commit is contained in:
parent
2d7244f6d5
commit
e3617a55a0
|
@ -33,10 +33,7 @@ public class DolphinEmulator<MainActivity> extends Activity
|
||||||
out = new FileOutputStream(output);
|
out = new FileOutputStream(output);
|
||||||
copyFile(in, out);
|
copyFile(in, out);
|
||||||
in.close();
|
in.close();
|
||||||
in = null;
|
|
||||||
out.flush();
|
|
||||||
out.close();
|
out.close();
|
||||||
out = null;
|
|
||||||
} catch(IOException e) {
|
} catch(IOException e) {
|
||||||
Log.e("DolphinEmulator", "Failed to copy asset file: " + asset, e);
|
Log.e("DolphinEmulator", "Failed to copy asset file: " + asset, e);
|
||||||
}
|
}
|
||||||
|
@ -78,7 +75,6 @@ public class DolphinEmulator<MainActivity> extends Activity
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
if (savedInstanceState == null)
|
if (savedInstanceState == null)
|
||||||
{
|
{
|
||||||
|
|
||||||
Intent ListIntent = new Intent(this, GameListActivity.class);
|
Intent ListIntent = new Intent(this, GameListActivity.class);
|
||||||
startActivityForResult(ListIntent, 1);
|
startActivityForResult(ListIntent, 1);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue