Skip to content

Commit

Permalink
Set since-build to IJ 2022.3 to ensure full compatibility with Java 17 (
Browse files Browse the repository at this point in the history
  • Loading branch information
albertoventurini authored Jan 9, 2023
1 parent 87f14ce commit 0f49a4c
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 15 deletions.
2 changes: 1 addition & 1 deletion graph-database-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ intellij {

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

def allChanges = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.albertoventurini.graphdbplugin.jetbrains.component.datasource.metadata.neo4j;

import java.util.List;

public record Neo4jIndexMetadata(
String name,
String state) { }
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
/**
* Copied and adapted from plugin
* <a href="https://github.com/neueda/jetbrains-plugin-graph-database-support">Graph Database Support</a>
* by Neueda Technologies, Ltd.
* Modified by Alberto Venturini, 2022
*/
package com.albertoventurini.graphdbplugin.jetbrains.component.datasource.metadata.neo4j;

public record Neo4jLabelMetadata(String name, long count) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
/**
* Copied and adapted from plugin
* <a href="https://github.com/neueda/jetbrains-plugin-graph-database-support">Graph Database Support</a>
* by Neueda Technologies, Ltd.
* Modified by Alberto Venturini, 2022
*/
package com.albertoventurini.graphdbplugin.jetbrains.component.datasource.metadata.neo4j;

public record Neo4jRelationshipTypeMetadata(String name, long count) {
Expand Down

0 comments on commit 0f49a4c

Please sign in to comment.