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

Implement Coursier for plugin dependency resolution and fetching #113

Merged
merged 7 commits into from
Aug 12, 2019
Prev Previous commit
Next Next commit
Fix non-compiling visibility in PluginClassLoader
  • Loading branch information
hlxid committed Aug 8, 2019
commit baa1e535a8519b9fe64c96eaf2c51d4da9852830
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ import java.net.{URL, URLClassLoader}
* @param urls Takes an array of urls an creates a simple URLClassLoader with it
*/
class PluginClassLoader(urls: Array[URL]) extends URLClassLoader(urls) {
private[helper] override def addURL(url: URL): Unit = super.addURL(url) // just exposes this method to be package-private instead of protected
protected[helper] override def addURL(url: URL): Unit = super.addURL(url) // just exposes this method to be package-private instead of class internal protected
}