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

@@ -5,23 +5,21 @@ import android.view.ViewGroup;
public class GestureOverlayView extends ViewGroup {
public GestureOverlayView(Context context) {
}
public GestureOverlayView(Context context) {
}
public void setGestureStrokeType(int type) {
}
public void setGestureStrokeType(int type) {
}
public void setEventsInterceptionEnabled(boolean enabled) {
}
public void setEventsInterceptionEnabled(boolean enabled) {
}
public void setGestureVisible(boolean enabled) {
}
public void setGestureVisible(boolean enabled) {
}
public void addOnGesturePerformedListener(OnGesturePerformedListener listener) {
}
public void addOnGesturePerformedListener(OnGesturePerformedListener listener) {
}
public interface OnGesturePerformedListener {
}
public interface OnGesturePerformedListener {
}
}

View File

@@ -4,7 +4,6 @@ import java.io.InputStream;
public class GestureStore {
public void load(InputStream inputStream) {
}
public void load(InputStream inputStream) {
}
}