mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-09 08:32:07 -07:00
Instead of trying to track down every place this class is used we can simply stub out the entire class so it has no extra overhead.
20 lines
514 B
Java
20 lines
514 B
Java
package net.minecraft.server;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.HashMap;
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
// CraftBukkit start - strip down to empty
|
|
public class MethodProfiler {
|
|
public final void a() { }
|
|
public final void a(String s) { }
|
|
public final void b() { }
|
|
public final List b(String s) { return null; }
|
|
public final void c(String s) { }
|
|
public final String c() { return null; }
|
|
}
|
|
// CraftBukkit end
|