Skip to content

Commit 208917b

Browse files
committed
fix(plugin): remove plugin authors
1 parent 85290f9 commit 208917b

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

plugin/src/server/sc/plugin2020/GamePlugin.java

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,10 @@
1010
import sc.shared.ScoreDefinition;
1111
import sc.shared.ScoreFragment;
1212

13-
/**
14-
* Abstrakte Beschreibung des Spiels Hive für die Software-Challenge 2020
15-
*/
16-
@PluginDescriptor(name = "Hive", uuid = GamePlugin.PLUGIN_UUID, author = GamePlugin.PLUGIN_AUTHOR)
13+
/** Abstrakte Beschreibung des Spiels Hive für die Software-Challenge 2020. */
14+
@PluginDescriptor(name = "Hive", uuid = GamePlugin.PLUGIN_UUID)
1715
public class GamePlugin implements IGamePlugin {
1816

19-
public static final String PLUGIN_AUTHOR = "";
2017
public static final String PLUGIN_UUID = "swc_2020_hive";
2118

2219
// NOTE: Always write the XML representation of unicode characters, not the character directly, as it confuses the

plugin/src/server/sc/plugin2021/GamePlugin.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ import sc.shared.ScoreDefinition
1010
import sc.shared.ScoreFragment
1111
import sc.helpers.xStream as xstream
1212

13-
@PluginDescriptor(name = "Blokus", uuid = "swc_2021_blokus", author = "")
13+
@PluginDescriptor(name = "Blokus", uuid = "swc_2021_blokus")
1414
class GamePlugin: IGamePlugin {
1515

1616
companion object {
17-
val PLUGIN_AUTHOR = ""
1817
val PLUGIN_UUID = "swc_2021_blokus"
1918

2019
val SCORE_DEFINITION = ScoreDefinition(arrayOf(

sdk/src/framework/sc/plugins/PluginDescriptor.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,5 @@
77
public @interface PluginDescriptor {
88
String name();
99

10-
String author() default "Anonymous";
11-
1210
String uuid();
1311
}

server/test/sc/server/plugins/TestPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
import java.util.Arrays;
1212

13-
@PluginDescriptor(author = "Chuck", name = "TestPlugin", uuid = TestPlugin.TEST_PLUGIN_UUID)
13+
@PluginDescriptor(name = "TestPlugin", uuid = TestPlugin.TEST_PLUGIN_UUID)
1414
public class TestPlugin implements IGamePlugin {
1515
public static final String TEST_PLUGIN_UUID = "012345-norris";
1616

0 commit comments

Comments
 (0)