diff options
author | Elliott Hughes <enh@google.com> | 2010-05-13 12:36:25 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2010-05-13 12:49:12 -0700 |
commit | f33eae7e84eb6d3b0f4e86b59605bb3de73009f3 (patch) | |
tree | f6cb62c04ce2669d2fa4715fbab86d38c8fca06d /luni/src/test/java/tests/SQLite/ExceptionTest.java | |
parent | d21d78fd49a2d798218e8c8aefbddb26a0e71bbb (diff) | |
download | libcore-f33eae7e84eb6d3b0f4e86b59605bb3de73009f3.zip libcore-f33eae7e84eb6d3b0f4e86b59605bb3de73009f3.tar.gz libcore-f33eae7e84eb6d3b0f4e86b59605bb3de73009f3.tar.bz2 |
Remove all trailing whitespace from the dalvik team-maintained parts of libcore.
Gentlemen, you may now set your editors to "strip trailing whitespace"...
Change-Id: I85b2f6c80e5fbef1af6cab11789790b078c11b1b
Diffstat (limited to 'luni/src/test/java/tests/SQLite/ExceptionTest.java')
-rw-r--r-- | luni/src/test/java/tests/SQLite/ExceptionTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/luni/src/test/java/tests/SQLite/ExceptionTest.java b/luni/src/test/java/tests/SQLite/ExceptionTest.java index fe86e8f..fa11422 100644 --- a/luni/src/test/java/tests/SQLite/ExceptionTest.java +++ b/luni/src/test/java/tests/SQLite/ExceptionTest.java @@ -27,18 +27,18 @@ import junit.framework.TestCase; @TestTargetClass(SQLite.Exception.class) public class ExceptionTest extends SQLiteTest { - + private Database db = null; public void setUp() throws java.lang.Exception { super.setUp(); db = new Database(); } - + public void tearDown() { super.tearDown(); } - + /** * @tests {@link Exception#Exception(String)} */ |