Skip to content

Commit f44f77b

Browse files
committed
Fix compat package
1 parent 8f028dd commit f44f77b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compatibility/5.4/neo4j-kernel-adapter/src/main/java/org/neo4j/gds/compat/_54/SettingProxyFactoryImpl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* You should have received a copy of the GNU General Public License
1818
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1919
*/
20-
package org.neo4j.gds.compat.rc;
20+
package org.neo4j.gds.compat._54;
2121

2222
import org.neo4j.annotations.service.ServiceProvider;
2323
import org.neo4j.gds.compat.Neo4jVersion;
@@ -34,11 +34,11 @@ public boolean canLoad(Neo4jVersion version) {
3434

3535
@Override
3636
public SettingProxyApi load() {
37-
throw new UnsupportedOperationException("rc compatibility requires JDK17");
37+
throw new UnsupportedOperationException("5.4 compatibility requires JDK17");
3838
}
3939

4040
@Override
4141
public String description() {
42-
return "Neo4j Settings RC (placeholder)";
42+
return "Neo4j Settings 5.4 (placeholder)";
4343
}
4444
}

0 commit comments

Comments
 (0)