From 974e9c23c3e783c678e0bbaeb9f45cd26e6fb10e Mon Sep 17 00:00:00 2001 From: TheGatesScratch Date: Sat, 12 Nov 2022 16:20:12 +0100 Subject: [PATCH] Name change getPath -> path. --- src/main/java/com/thegates/maple/exception/ReadException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/thegates/maple/exception/ReadException.java b/src/main/java/com/thegates/maple/exception/ReadException.java index 487413bd..1f7787ca 100644 --- a/src/main/java/com/thegates/maple/exception/ReadException.java +++ b/src/main/java/com/thegates/maple/exception/ReadException.java @@ -22,6 +22,6 @@ public class ReadException extends RuntimeException { public ReadException(DataElement data, String message) { - super("Error while reading data at %s, %s.".formatted(data.getPath(), message)); + super("Error while reading data at %s, %s.".formatted(data.path(), message)); } }