All parameters on one line (for now)

Easier picking of 1.7 changes
This commit is contained in:
yueh
2016-01-01 02:02:05 +01:00
parent e08ab38c52
commit f84b9a7e1d
147 changed files with 840 additions and 1506 deletions
@@ -118,10 +118,6 @@ public abstract class BaseVersion implements Version
@Override
public final String toString()
{
return "Version{" +
"revision=" + this.revision +
", channel=" + this.channel +
", build=" + this.build +
'}';
return "Version{" + "revision=" + this.revision + ", channel=" + this.channel + ", build=" + this.build + '}';
}
}
@@ -25,7 +25,5 @@ package appeng.services.version;
*/
public enum Channel
{
Alpha,
Beta,
Stable
Alpha, Beta, Stable
}