Skip to content

Commit

Permalink
Remove deprecated constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
decebals committed Apr 1, 2019
1 parent 6addff3 commit 9ae845b
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions pf4j/src/main/java/org/pf4j/DefaultPluginManager.java
Expand Up @@ -19,7 +19,6 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.File;
import java.nio.file.Path;
import java.nio.file.Paths;

Expand All @@ -40,16 +39,6 @@ public DefaultPluginManager() {
super();
}

/**
* Use {@link DefaultPluginManager#DefaultPluginManager(Path)}.
*
* @param pluginsDir
*/
@Deprecated
public DefaultPluginManager(File pluginsDir) {
this(pluginsDir.toPath());
}

public DefaultPluginManager(Path pluginsRoot) {
super(pluginsRoot);
}
Expand Down

0 comments on commit 9ae845b

Please sign in to comment.