mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-14 12:58:03 +00:00
javadoc
This commit is contained in:
parent
10ad9261b1
commit
b06999f2be
2 changed files with 4 additions and 10 deletions
|
@ -36,16 +36,7 @@
|
||||||
</resource>
|
</resource>
|
||||||
</resources>
|
</resources>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
|
||||||
<version>2.10.1</version>
|
|
||||||
<configuration>
|
|
||||||
<show>public</show>
|
|
||||||
<useStandardDocletOptions>false</useStandardDocletOptions>
|
|
||||||
<additionalparam>-Xdoclint:none</additionalparam>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>2.3.2</version>
|
<version>2.3.2</version>
|
||||||
|
|
|
@ -112,6 +112,9 @@ public class BukkitMain extends JavaPlugin implements Listener, IPlotMain {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void log(String message) {
|
public void log(String message) {
|
||||||
|
if (message == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
message = message.replaceAll("\u00B2", "2");
|
message = message.replaceAll("\u00B2", "2");
|
||||||
if ((THIS == null) || (Bukkit.getServer().getConsoleSender() == null)) {
|
if ((THIS == null) || (Bukkit.getServer().getConsoleSender() == null)) {
|
||||||
System.out.println(ChatColor.stripColor(ConsoleColors.fromString(message)));
|
System.out.println(ChatColor.stripColor(ConsoleColors.fromString(message)));
|
||||||
|
|
Loading…
Reference in a new issue