Skip to content

Commit 0f49a4c

Browse files
Set since-build to IJ 2022.3 to ensure full compatibility with Java 17 (#49)
1 parent 87f14ce commit 0f49a4c

File tree

4 files changed

+1
-15
lines changed

4 files changed

+1
-15
lines changed

graph-database-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ intellij {
3434

3535
// See https://plugins.jetbrains.com/docs/intellij/configuring-plugin-project.html#patching-the-plugin-configuration-file
3636
patchPluginXml {
37-
sinceBuild = "222.0"
37+
sinceBuild = "223.0"
3838
untilBuild = "223.*"
3939

4040
def allChanges = {
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package com.albertoventurini.graphdbplugin.jetbrains.component.datasource.metadata.neo4j;
22

3-
import java.util.List;
4-
53
public record Neo4jIndexMetadata(
64
String name,
75
String state) { }

ui/jetbrains/src/main/java/com/albertoventurini/graphdbplugin/jetbrains/component/datasource/metadata/neo4j/Neo4jLabelMetadata.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
/**
2-
* Copied and adapted from plugin
3-
* <a href="https://github.com/neueda/jetbrains-plugin-graph-database-support">Graph Database Support</a>
4-
* by Neueda Technologies, Ltd.
5-
* Modified by Alberto Venturini, 2022
6-
*/
71
package com.albertoventurini.graphdbplugin.jetbrains.component.datasource.metadata.neo4j;
82

93
public record Neo4jLabelMetadata(String name, long count) {

ui/jetbrains/src/main/java/com/albertoventurini/graphdbplugin/jetbrains/component/datasource/metadata/neo4j/Neo4jRelationshipTypeMetadata.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
/**
2-
* Copied and adapted from plugin
3-
* <a href="https://github.com/neueda/jetbrains-plugin-graph-database-support">Graph Database Support</a>
4-
* by Neueda Technologies, Ltd.
5-
* Modified by Alberto Venturini, 2022
6-
*/
71
package com.albertoventurini.graphdbplugin.jetbrains.component.datasource.metadata.neo4j;
82

93
public record Neo4jRelationshipTypeMetadata(String name, long count) {

0 commit comments

Comments
 (0)