Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit baa1e53

Browse files
committed
Fix non-compiling visibility in PluginClassLoader
1 parent e88e587 commit baa1e53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/org/codeoverflow/chatoverflow/framework/helper/PluginClassLoader.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ import java.net.{URL, URLClassLoader}
99
* @param urls Takes an array of urls an creates a simple URLClassLoader with it
1010
*/
1111
class PluginClassLoader(urls: Array[URL]) extends URLClassLoader(urls) {
12-
private[helper] override def addURL(url: URL): Unit = super.addURL(url) // just exposes this method to be package-private instead of protected
12+
protected[helper] override def addURL(url: URL): Unit = super.addURL(url) // just exposes this method to be package-private instead of class internal protected
1313
}

0 commit comments

Comments
 (0)