src/api-impl: fix up code style, mainly for code imported from AOSP

used the following (plus manual edits):
`clang-format --style="{BasedOnStyle: LLVM, IndentWidth: 8, UseTab: Always, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: true, ColumnLimit: 0}`
This commit is contained in:
Mis012
2023-06-22 11:45:46 +02:00
parent 824b821f5a
commit 0a9591c474
208 changed files with 154568 additions and 150150 deletions

View File

@@ -16,9 +16,8 @@
package android.content.res;
import org.xmlpull.v1.XmlPullParser;
import android.util.AttributeSet;
import org.xmlpull.v1.XmlPullParser;
/**
* The XML parsing interface returned for an XML resource. This is a standard
@@ -27,10 +26,9 @@ import android.util.AttributeSet;
* when it is done reading the resource.
*/
public interface XmlResourceParser extends XmlPullParser, AttributeSet, AutoCloseable {
/**
* Close this interface to the resource. Calls on the interface are no
* longer value after this call.
*/
public void close();
/**
* Close this interface to the resource. Calls on the interface are no
* longer value after this call.
*/
public void close();
}