Remove patches

This commit is contained in:
cpw 2015-08-20 12:14:02 -07:00
parent 7e600c0dd8
commit 58ab3de7c1
2 changed files with 0 additions and 93 deletions

View file

@ -1,47 +0,0 @@
--- ../src-base/minecraft/net/minecraftforge/fml/relauncher/Side.java
+++ ../src-work/minecraft/net/minecraftforge/fml/relauncher/Side.java
@@ -1,15 +1,41 @@
+/*
+ * Forge Mod Loader
+ * Copyright (c) 2012-2013 cpw.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the GNU Lesser Public License v2.1
+ * which accompanies this distribution, and is available at
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ *
+ * Contributors:
+ * cpw - implementation
+ */
+
package net.minecraftforge.fml.relauncher;
-public enum Side
-{
+public enum Side {
+
+ /**
+ * The client side. Specifically, an environment where rendering capability exists.
+ * Usually in the game client.
+ */
CLIENT,
+ /**
+ * The server side. Specifically, an environment where NO rendering capability exists.
+ * Usually on the dedicated server.
+ */
SERVER;
+ /**
+ * @return If this is the server environment
+ */
public boolean isServer()
{
- return !this.isClient();
+ return !isClient();
}
+ /**
+ * @return if this is the Client environment
+ */
public boolean isClient()
{
return this == CLIENT;

View file

@ -1,46 +0,0 @@
--- ../src-base/minecraft/net/minecraftforge/fml/relauncher/SideOnly.java
+++ ../src-work/minecraft/net/minecraftforge/fml/relauncher/SideOnly.java
@@ -1,3 +1,15 @@
+/*
+ * Forge Mod Loader
+ * Copyright (c) 2012-2013 cpw.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the GNU Lesser Public License v2.1
+ * which accompanies this distribution, and is available at
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ *
+ * Contributors:
+ * cpw - implementation
+ */
+
package net.minecraftforge.fml.relauncher;
import java.lang.annotation.ElementType;
@@ -5,9 +17,25 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
+import net.minecraftforge.fml.common.SidedProxy;
+
+
+/**
+ * Marks the associated element as being only available on a certain {@link Side}. This is
+ * generally meant for internal Forge and FML use only and should only be used on mod classes
+ * when other more common mechanisms, such as using a {@link SidedProxy} fail to work.
+ *
+ * Note, this will <em>only</em> apply to the direct element marked. This code:
+ * <code> @SideOnly public MyField field = new MyField();</code> will <strong>not</strong> work, as the initializer
+ * is a separate piece of code to the actual field declaration, and will not be able to find
+ * it's field on the wrong side.
+ *
+ * @author cpw
+ *
+ */
@Retention(RetentionPolicy.RUNTIME)
-@Target( {ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR})
+@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR})
public @interface SideOnly
{
- Side value();
+ public Side value();
}