Skip to content

Commit e52c44f

Browse files
committed
refactor: remove the deprecated SQLiteJDBCLoader isPureJavaMode and getPureJavaFlag
the deprecation was added in December 2019 BREAKING-CHANGE: methods are removed
1 parent 8967d75 commit e52c44f

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

src/main/java/org/sqlite/SQLiteJDBCLoader.java

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -109,26 +109,6 @@ static void cleanup() {
109109
}
110110
}
111111

112-
/**
113-
* @return True if the SQLite JDBC driver is set to pure Java mode; false otherwise.
114-
* @deprecated Pure Java no longer supported
115-
*/
116-
@Deprecated
117-
static boolean getPureJavaFlag() {
118-
return Boolean.parseBoolean(System.getProperty("sqlite.purejava", "false"));
119-
}
120-
121-
/**
122-
* Checks if the SQLite JDBC driver is set to pure Java mode.
123-
*
124-
* @return True if the SQLite JDBC driver is set to pure Java mode; false otherwise.
125-
* @deprecated Pure Java no longer supported
126-
*/
127-
@Deprecated
128-
public static boolean isPureJavaMode() {
129-
return false;
130-
}
131-
132112
/**
133113
* Checks if the SQLite JDBC driver is set to native mode.
134114
*

0 commit comments

Comments
 (0)