Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Changes so that package names always match paths on disk, as required by eclipse. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c93d2517dcfc958aee87eb9c2cbddbc7 |
User & Date: | dan 2014-06-11 18:59:24.589 |
Context
2014-06-18
| ||
10:11 | Fix a resource leak in SQLiteConnection.nativeExecuteForCursorWindow(). (check-in: 3558b4d73c user: dan tags: trunk) | |
2014-06-11
| ||
19:10 | Merge trunk with this branch. (check-in: 7fbe992d8f user: dan tags: api-level-15) | |
18:59 | Changes so that package names always match paths on disk, as required by eclipse. (check-in: c93d2517dc user: dan tags: trunk) | |
2014-05-21
| ||
17:37 | Update index.wiki to mention the "api-level-15" branch. (check-in: 3596e35aa8 user: dan tags: trunk) | |
Changes
Changes to local.properties.
1 2 3 4 5 6 7 8 9 | # This file is automatically generated by Android Tools. # Do not modify this file -- YOUR CHANGES WILL BE ERASED! # # This file must *NOT* be checked into Version Control Systems, # as it contains information specific to your local configuration. # location of the SDK. This is only used by Ant # For customization when using a Version Control System, please read the # header note. | | | 1 2 3 4 5 6 7 8 9 10 | # This file is automatically generated by Android Tools. # Do not modify this file -- YOUR CHANGES WILL BE ERASED! # # This file must *NOT* be checked into Version Control Systems, # as it contains information specific to your local configuration. # location of the SDK. This is only used by Ant # For customization when using a Version Control System, please read the # header note. sdk.dir=/home/dan/adt-bundle-linux-x86-20131030/sdk/ |
Name change from src/org/sqlite/database/sqlite/ExtraUtils.java to src/org/sqlite/database/ExtraUtils.java.
︙ | ︙ |
Changes to src/org/sqlite/database/sqlite/CloseGuard.java.
︙ | ︙ | |||
14 15 16 17 18 19 20 | * limitations under the License. */ /* ** Modified to support SQLite extensions by the SQLite developers: ** sqlite-dev@sqlite.org. */ | | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | * limitations under the License. */ /* ** Modified to support SQLite extensions by the SQLite developers: ** sqlite-dev@sqlite.org. */ package org.sqlite.database.sqlite; import android.util.Log; /** * CloseGuard is a mechanism for flagging implicit finalizer cleanup of * resources that should have been cleaned up by explicit close * methods (aka "explicit termination methods" in Effective Java). * <p> |
︙ | ︙ |
Changes to src/org/sqlite/database/sqlite/SQLiteConnection.java.
︙ | ︙ | |||
17 18 19 20 21 22 23 | ** Modified to support SQLite extensions by the SQLite developers: ** sqlite-dev@sqlite.org. */ package org.sqlite.database.sqlite; /* import dalvik.system.BlockGuard; */ | | | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | ** Modified to support SQLite extensions by the SQLite developers: ** sqlite-dev@sqlite.org. */ package org.sqlite.database.sqlite; /* import dalvik.system.BlockGuard; */ import org.sqlite.database.sqlite.CloseGuard; import android.database.Cursor; import android.database.CursorWindow; import android.database.DatabaseUtils; import org.sqlite.database.ExtraUtils; import org.sqlite.database.sqlite.SQLiteDebug.DbStats; import android.os.CancellationSignal; |
︙ | ︙ |
Changes to src/org/sqlite/database/sqlite/SQLiteConnectionPool.java.
︙ | ︙ | |||
16 17 18 19 20 21 22 | /* ** Modified to support SQLite extensions by the SQLite developers: ** sqlite-dev@sqlite.org. */ package org.sqlite.database.sqlite; | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | /* ** Modified to support SQLite extensions by the SQLite developers: ** sqlite-dev@sqlite.org. */ package org.sqlite.database.sqlite; import org.sqlite.database.sqlite.CloseGuard; import org.sqlite.database.sqlite.SQLiteDebug.DbStats; import android.os.CancellationSignal; import android.os.OperationCanceledException; import android.os.SystemClock; import android.util.Log; /* import android.util.PrefixPrinter; */ |
︙ | ︙ |
Changes to src/org/sqlite/database/sqlite/SQLiteDatabase.java.
︙ | ︙ | |||
33 34 35 36 37 38 39 | import android.os.OperationCanceledException; import android.text.TextUtils; import android.util.EventLog; import android.util.Log; import android.util.Pair; import android.util.Printer; | | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | import android.os.OperationCanceledException; import android.text.TextUtils; import android.util.EventLog; import android.util.Log; import android.util.Pair; import android.util.Printer; import org.sqlite.database.sqlite.CloseGuard; import java.io.File; import java.io.FileFilter; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Locale; |
︙ | ︙ |