From 5955a668b97fffe8d15c314f1530a4a877630a70 Mon Sep 17 00:00:00 2001 From: creeper123123321 Date: Sat, 18 Aug 2018 14:24:07 -0300 Subject: [PATCH] Add comments to empty methods, add prefix for version --- .../github/creeper123123321/viarift/platform/VRLoader.java | 2 +- .../github/creeper123123321/viarift/platform/VRPlatform.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/github/creeper123123321/viarift/platform/VRLoader.java b/src/main/java/com/github/creeper123123321/viarift/platform/VRLoader.java index ef9f6c6..050eca0 100644 --- a/src/main/java/com/github/creeper123123321/viarift/platform/VRLoader.java +++ b/src/main/java/com/github/creeper123123321/viarift/platform/VRLoader.java @@ -16,6 +16,6 @@ public class VRLoader implements ViaPlatformLoader { @Override public void unload() { - + // Nothing to do } } diff --git a/src/main/java/com/github/creeper123123321/viarift/platform/VRPlatform.java b/src/main/java/com/github/creeper123123321/viarift/platform/VRPlatform.java index b195354..03d78b3 100644 --- a/src/main/java/com/github/creeper123123321/viarift/platform/VRPlatform.java +++ b/src/main/java/com/github/creeper123123321/viarift/platform/VRPlatform.java @@ -34,7 +34,7 @@ public class VRPlatform implements ViaPlatform { @Override public String getPluginVersion() { - return VersionInfo.VERSION; + return "ViaRift-" + VersionInfo.VERSION; } @Override @@ -111,7 +111,7 @@ public class VRPlatform implements ViaPlatform { @Override public void onReload() { - + // Nothing to do } @Override