Skip to content

Commit a3a4ee8

Browse files
committed
Fix formatting
1 parent 9990731 commit a3a4ee8

File tree

7 files changed

+25
-25
lines changed

7 files changed

+25
-25
lines changed

pom.xml

+11-11
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@
2424
</dependencies>
2525

2626
<build>
27-
<plugins>
28-
<plugin>
29-
<groupId>org.apache.maven.plugins</groupId>
30-
<artifactId>maven-compiler-plugin</artifactId>
31-
<version>2.0.2</version>
32-
<configuration>
33-
<source>1.5</source>
34-
<target>1.5</target>
35-
</configuration>
36-
</plugin>
37-
</plugins>
27+
<plugins>
28+
<plugin>
29+
<groupId>org.apache.maven.plugins</groupId>
30+
<artifactId>maven-compiler-plugin</artifactId>
31+
<version>2.0.2</version>
32+
<configuration>
33+
<source>1.5</source>
34+
<target>1.5</target>
35+
</configuration>
36+
</plugin>
37+
</plugins>
3838
</build>
3939
</project>

src/main/java/com/dinnerbone/bukkit/chat/ChatBukkit.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
package com.dinnerbone.bukkit.chat;
32

43
import com.dinnerbone.bukkit.chat.commands.MessageCommand;
@@ -12,6 +11,7 @@
1211
* @author Dinnerbone
1312
*/
1413
public class ChatBukkit extends JavaPlugin {
14+
@Override
1515
public void onEnable() {
1616
getCommand("who").setExecutor(new WhoCommand(this));
1717
getCommand("msg").setExecutor(new MessageCommand(this));

src/main/java/com/dinnerbone/bukkit/chat/CommandHandler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public CommandHandler(ChatBukkit plugin) {
1414
}
1515

1616
public abstract boolean onCommand(CommandSender sender, Command command, String label, String[] args);
17-
17+
1818
protected static boolean anonymousCheck(CommandSender sender) {
1919
if (!(sender instanceof Player)) {
2020
sender.sendMessage("Cannot execute that command, I don't know who you are!");
@@ -38,7 +38,7 @@ protected static Player getPlayer(CommandSender sender, String[] args, int index
3838
if (anonymousCheck(sender)) {
3939
return null;
4040
} else {
41-
return (Player)sender;
41+
return (Player) sender;
4242
}
4343
}
4444
}

src/main/java/com/dinnerbone/bukkit/chat/commands/MessageCommand.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
package com.dinnerbone.bukkit.chat.commands;
32

43
import com.dinnerbone.bukkit.chat.ChatBukkit;
@@ -12,7 +11,7 @@
1211

1312
public class MessageCommand extends CommandHandler {
1413
private Map<Player, CommandSender> lastMessages = new HashMap<Player, CommandSender>();
15-
14+
1615
public MessageCommand(ChatBukkit plugin) {
1716
super(plugin);
1817
}
@@ -37,7 +36,7 @@ public boolean onCommand(CommandSender sender, Command command, String label, St
3736
// TODO: This should use an event, but we need some internal changes to support that fully.
3837

3938
if (sender instanceof Player) {
40-
name = ((Player)sender).getDisplayName();
39+
name = ((Player) sender).getDisplayName();
4140
}
4241

4342
target.sendMessage(String.format("[%s]->[you]: %s", name, message));

src/main/java/com/dinnerbone/bukkit/chat/commands/ReplyCommand.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
package com.dinnerbone.bukkit.chat.commands;
32

43
import com.dinnerbone.bukkit.chat.ChatBukkit;
@@ -25,7 +24,7 @@ public boolean onCommand(CommandSender sender, Command command, String label, St
2524
return true;
2625
}
2726

28-
Player player = (Player)sender;
27+
Player player = (Player) sender;
2928
CommandSender target = getTarget(player);
3029

3130
if (target == null) {
@@ -37,9 +36,9 @@ public boolean onCommand(CommandSender sender, Command command, String label, St
3736
// TODO: This should use an event, but we need some internal changes to support that fully.
3837

3938
if (target instanceof Player) {
40-
name = ((Player)target).getDisplayName();
39+
name = ((Player) target).getDisplayName();
4140
}
42-
41+
4342
target.sendMessage(String.format("[%s]->[you]: %s", player.getDisplayName(), message));
4443
sender.sendMessage(String.format("[you]->[%s]: %s", name, message));
4544
}
@@ -51,7 +50,7 @@ private CommandSender getTarget(Player player) {
5150
PluginCommand command = plugin.getCommand("msg");
5251

5352
if ((command != null) && (command.getExecutor() instanceof MessageCommand)) {
54-
return ((MessageCommand)command.getExecutor()).getLastSender(player);
53+
return ((MessageCommand) command.getExecutor()).getLastSender(player);
5554
} else {
5655
return null;
5756
}

src/main/java/com/dinnerbone/bukkit/chat/commands/WhoCommand.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ private void PerformPlayerList(CommandSender sender, String[] args) {
6868
String name = player.getDisplayName();
6969

7070
if (name.length() > 0) {
71-
if (result.length() > 0) result += ", ";
71+
if (result.length() > 0) {
72+
result += ", ";
73+
}
7274
result += name;
7375
count++;
7476
}

src/main/java/com/dinnerbone/bukkit/chat/events/WhoisRequestEvent.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ public CommandSender getSender() {
4040
}
4141

4242
/**
43-
* Sets the specified field of this report to the given value.
44-
* Use null if you wish to remove that field.
43+
* Sets the specified field of this report to the given value. Use null if
44+
* you wish to remove that field.
4545
*
4646
* @param field Name of the field to set
4747
* @param value New value of the field (or null to remove)

0 commit comments

Comments
 (0)