Update test plugin

This commit is contained in:
Nassim Jahnke 2023-06-08 15:42:13 +02:00
parent ad4eb2ec7d
commit a6628220d3
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B
1 changed files with 2 additions and 2 deletions

View File

@ -1,13 +1,13 @@
package io.papermc.testplugin;
import io.papermc.paper.plugin.bootstrap.BootstrapContext;
import io.papermc.paper.plugin.bootstrap.PluginBootstrap;
import io.papermc.paper.plugin.bootstrap.PluginProviderContext;
import org.jetbrains.annotations.NotNull;
public class TestPluginBootstrap implements PluginBootstrap {
@Override
public void bootstrap(@NotNull PluginProviderContext context) {
public void bootstrap(@NotNull BootstrapContext context) {
}
}