Skip to content

Commit 86ea54d

Browse files
committed
removed unused info method from VirtualFileSystemImpl
1 parent bded910 commit 86ea54d

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

graalpython/org.graalvm.python.embedding/src/org/graalvm/python/embedding/utils/VirtualFileSystemImpl.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -924,12 +924,6 @@ public Map<String, Object> readAttributes(Path path, String attributes, LinkOpti
924924
return attrs;
925925
}
926926

927-
private static void info(String msgFormat, Object... args) {
928-
if (LOGGER.isLoggable(Level.INFO)) {
929-
LOGGER.log(Level.INFO, String.format(msgFormat, args));
930-
}
931-
}
932-
933927
private static void warn(String msgFormat, Object... args) {
934928
if (LOGGER.isLoggable(Level.WARNING)) {
935929
LOGGER.log(Level.WARNING, String.format(msgFormat, args));

0 commit comments

Comments
 (0)