1package net.minecraft.server; 2 3public class ItemSapling extends ItemBlock { 4 5 public ItemSapling(int i) { 6 super(i); 7 this.d(0); 8 this.a(true); 9 } 10 11 public int filterData(int i) { 12 return i; 13 } 14}