Move plugin classloader to its own package (#73786)

The plugin classloader exists in its own jar file for legacy reasons,
and while it should go away in the future, it currently duplicates the
package name of the rest of the plugin classes. This commit moves the
classloader into its own unique package.

relates #73784
This commit is contained in:
Ryan Ernst 2021-06-07 08:12:24 -07:00 committed by GitHub
parent c2135844f0
commit e81323e147
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View file

@ -6,7 +6,7 @@
* Side Public License, v 1.
*/
package org.elasticsearch.plugins;
package org.elasticsearch.plugins.loader;
import java.security.AccessController;
import java.security.PrivilegedAction;