Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

tabs -> spaces in the new Yesno java files and remove unused imports.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28422 a1c6a512-1295-4272-9138-f99709370657

+14 -16
-1
android/src/org/rockbox/RockboxYesno.java
··· 23 23 24 24 import android.app.Activity; 25 25 import android.content.Intent; 26 - import android.util.Log; 27 26 28 27 public class RockboxYesno 29 28 {
+14 -15
android/src/org/rockbox/YesnoActivity.java
··· 4 4 import android.app.AlertDialog; 5 5 import android.content.DialogInterface; 6 6 import android.os.Bundle; 7 - import android.util.Log; 8 7 9 8 public class YesnoActivity extends Activity 10 9 { ··· 18 17 .setMessage(getIntent().getStringExtra("value")) 19 18 .setPositiveButton(R.string.Yes, new DialogInterface.OnClickListener() 20 19 { 21 - public void onClick(DialogInterface dialog, int whichButton) { 22 - setResult(RESULT_OK, getIntent()); 23 - finish(); 24 - } 25 - }) 20 + public void onClick(DialogInterface dialog, int whichButton) { 21 + setResult(RESULT_OK, getIntent()); 22 + finish(); 23 + } 24 + }) 26 25 27 - .setNegativeButton(R.string.No, new DialogInterface.OnClickListener() 28 - { 29 - public void onClick(DialogInterface dialog, int whichButton) 30 - { 31 - setResult(RESULT_CANCELED, getIntent()); 32 - finish(); 33 - } 34 - }) 35 - .show(); 26 + .setNegativeButton(R.string.No, new DialogInterface.OnClickListener() 27 + { 28 + public void onClick(DialogInterface dialog, int whichButton) 29 + { 30 + setResult(RESULT_CANCELED, getIntent()); 31 + finish(); 32 + } 33 + }) 34 + .show(); 36 35 } 37 36 }