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

@@ -481,4 +481,4 @@ public abstract class AbstractCursor implements CrossProcessCursor {
}
}
}
}
}

View File

@@ -133,7 +133,7 @@ public abstract class AbstractWindowedCursor extends AbstractCursor {
@Override
protected void checkPosition() {
super.checkPosition();
if (mWindow == null) {
throw new /*StaleDataException*/RuntimeException("Attempting to access a closed CursorWindow." +
"Most probable cause: cursor is deactivated prior to calling this method.");
@@ -206,4 +206,4 @@ public abstract class AbstractWindowedCursor extends AbstractCursor {
super.onDeactivateOrClose();
closeWindow();
}
}
}

View File

@@ -23,11 +23,11 @@ public final class CharArrayBuffer {
public CharArrayBuffer(int size) {
data = new char[size];
}
public CharArrayBuffer(char[] buf) {
data = buf;
}
public char[] data; // In and out parameter
public int sizeCopied; // Out parameter
}

View File

@@ -88,4 +88,4 @@ public class ContentObservable extends Observable<ContentObserver> {
}
}
}
}
}

View File

@@ -248,4 +248,4 @@ public abstract class ContentObserver {
});
}
}
}
}

View File

@@ -74,5 +74,5 @@ public interface CrossProcessCursor extends Cursor {
* @param newPosition The position that we're moving to.
* @return True if the move is successful, false otherwise.
*/
boolean onMove(int oldPosition, int newPosition);
}
boolean onMove(int oldPosition, int newPosition);
}

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
@@ -66,7 +66,7 @@ public final class DefaultDatabaseErrorHandler implements DatabaseErrorHandler {
if (!dbObj.isOpen()) {
// database files are not even openable. delete this database file.
// NOTE if the database has attached databases, then any of them could be corrupt.
// and not deleting all of them could cause corrupted database file to remain and
// and not deleting all of them could cause corrupted database file to remain and
// make the application crash on database open operation. To avoid this problem,
// the application should provide its own {@link DatabaseErrorHandler} impl class
// to delete ALL files of the database (including the attached databases).

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
@@ -130,10 +130,10 @@ public class SQLiteCursor extends AbstractWindowedCursor {
return mCount;
}
/*
/*
** The AbstractWindowClass contains protected methods clearOrCreateWindow() and
** closeWindow(), which are used by the android.database.sqlite.* version of this
** class. But, since they are marked with "@hide", the following replacement
** class. But, since they are marked with "@hide", the following replacement
** versions are required.
*/
private void awc_clearOrCreateWindow(String name){

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
** Modified to support SQLite extensions by the SQLite developers:
** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/

Some files were not shown because too many files have changed in this diff Show More