Skip to content

Commit 9f5c6a1

Browse files
committed
Remove org.jetbrains:annotations
1 parent d5b65d6 commit 9f5c6a1

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

plugin/trino-lakehouse/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -245,12 +245,6 @@
245245
<scope>test</scope>
246246
</dependency>
247247

248-
<dependency>
249-
<groupId>org.jetbrains</groupId>
250-
<artifactId>annotations</artifactId>
251-
<scope>test</scope>
252-
</dependency>
253-
254248
<dependency>
255249
<groupId>org.junit.jupiter</groupId>
256250
<artifactId>junit-jupiter-api</artifactId>

plugin/trino-lakehouse/src/test/java/io/trino/plugin/lakehouse/TestLakehouseDeltaConnectorSmokeTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
*/
1414
package io.trino.plugin.lakehouse;
1515

16-
import org.intellij.lang.annotations.Language;
1716
import org.junit.jupiter.api.Test;
1817

1918
import static io.trino.plugin.lakehouse.TableType.DELTA;
@@ -113,7 +112,7 @@ void testTableChangesFunction()
113112
""");
114113
}
115114

116-
private void assertTableChangesQuery(@Language("SQL") String sql, @Language("SQL") String expectedResult)
115+
private void assertTableChangesQuery(String sql, String expectedResult)
117116
{
118117
assertThat(query(sql))
119118
.result()

0 commit comments

Comments
 (0)