Skip to content

Commit 5c5403d

Browse files
committed
Misc
1 parent fc35261 commit 5c5403d

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

.editorconfig

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,3 @@ indent_style = tab
2020
[pom.xml]
2121
indent_style = space
2222
indent_size = 2
23-
24-
[.travis.yml]
25-
indent_style = space
26-
indent_size = 2

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.github.gwenn</groupId>
66
<artifactId>sqlite-dialect</artifactId>
@@ -13,7 +13,7 @@
1313
<licenses>
1414
<license>
1515
<name>Public domain</name>
16-
<url>http://unlicense.org/</url>
16+
<url>https://unlicense.org/</url>
1717
<distribution>manual</distribution>
1818
</license>
1919
</licenses>

src/main/java/org/sqlite/hibernate/dialect/SQLiteDialect.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ public boolean supportsIfExistsBeforeTableName() {
321321
return true;
322322
}
323323

324-
/* not case insensitive for unicode characters by default (ICU extension needed)
324+
/* not case-insensitive for Unicode characters by default (ICU extension needed)
325325
public boolean supportsCaseInsensitiveLike() {
326326
return true;
327327
}

src/test/resources/hibernate.cfg.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<property name="hibernate.jdbc.use_get_generated_keys">true</property>
2828

2929
<!-- Disable the second-level cache -->
30-
<property name="cache.provider_class">org.hibernate.cache.internal.NoCacheProvider</property>
30+
<property name="cache.provider_class">org.hibernate.cache.internal.NoCachingRegionFactory</property>
3131

3232
<!-- Echo all executed SQL to stdout -->
3333
<property name="show_sql">true</property>

0 commit comments

Comments
 (0)