run whitespace_format.py --add-new-line-marker-at-end-of-file --remove-trailing-whitespace --remove-trailing-empty-lines --new-line-marker=linux --normalize-non-standard-whitespace=remove on src/

This commit is contained in:
Mis012
2025-02-05 16:27:17 +01:00
parent 1d2450443e
commit ab5b600bf1
148 changed files with 9559 additions and 9529 deletions

View File

@@ -3,7 +3,7 @@ package android.content;
public class ClipData {
String text;
public static ClipData newPlainText(CharSequence label, CharSequence text) {
ClipData clip = new ClipData();
clip.text = text.toString();

View File

@@ -10,7 +10,7 @@ import android.net.Uri;
import java.util.Iterator;
public class IntentFilter {
private List<String> actions = new ArrayList<>();
private Set<String> categories = new HashSet<>();
private List<String> dataSchemes = new ArrayList<>();

View File

@@ -1674,7 +1674,7 @@ public class PackageManager {
* to modify the data returned.
*
* @return ProviderInfo containing information about the service.
* @throws Exception
* @throws Exception
*
* @see #GET_META_DATA
* @see #GET_SHARED_LIBRARY_FILES
@@ -2402,7 +2402,7 @@ public class PackageManager {
*
* @return ContentProviderInfo Information about the provider, if found,
* else null.
* @throws Exception
* @throws Exception
*/
public ProviderInfo resolveContentProvider(String authority, int flags) {
for (PackageParser.Provider p : Context.pkg.providers) {

View File

@@ -56,4 +56,4 @@ public class PackageUserState {
? new HashSet<String>(o.enabledComponents)
: null;
}
}
}