aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDecebal Suiu <decebal.suiu@gmail.com>2014-09-05 15:17:24 +0300
committerDecebal Suiu <decebal.suiu@gmail.com>2014-09-05 15:17:24 +0300
commitc6ad218b8e59011858b557c1b4e4b644ab6496c5 (patch)
treec10304d7e6d231bfa8312e81c1f2b06ddd8623e8 /README.md
parent7ae4ccd2637af8f1d89a76b2bdddd1960315618c (diff)
downloadpf4j-c6ad218b8e59011858b557c1b4e4b644ab6496c5.tar.gz
pf4j-c6ad218b8e59011858b557c1b4e4b644ab6496c5.zip
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index b0cfe49..5cc2db2 100644
--- a/README.md
+++ b/README.md
@@ -72,7 +72,7 @@ In above code, I created a **DefaultPluginManager** (it's the default implementa
**PluginManager** interface) that loads and starts all active(resolved) plugins.
Each available plugin is loaded using a different java class loader, **PluginClassLoader**.
The **PluginClassLoader** contains only classes found in **PluginClasspath** (default _classes_ and _lib_ folders) of plugin and runtime classes and libraries of the required/dependent plugins.
-This class loader is a Parent Last ClassLoader - it loads the classes from the plugin's jars before delegating to the parent class loader.
+This class loader is a _Parent Last ClassLoader_ - it loads the classes from the plugin's jars before delegating to the parent class loader.
The plugins are stored in a folder. You can specify the plugins folder in the constructor of DefaultPluginManager. If the plugins folder is not specified
than the location is returned by `System.getProperty("pf4j.pluginsDir", "plugins")`.