Skip to content

Commit 435ba9c

Browse files
author
Vladimir Kotal
committed
fix log message
1 parent 49a69e3 commit 435ba9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/history/HistoryClassLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class HistoryClassLoader extends ClassLoader {
5353
@Override
5454
public Class<?> loadClass(final String name) throws ClassNotFoundException {
5555
if (!allowedClasses.contains(name)) {
56-
throw new IllegalAccessError(name + " is not allowed to be used in configuration");
56+
throw new IllegalAccessError(name + " is not allowed to be used in History object");
5757
}
5858

5959
return getClass().getClassLoader().loadClass(name);

0 commit comments

Comments
 (0)