com.didiglobal.booster.instrument.ShadowSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of booster-android-instrument-logcat Show documentation
Show all versions of booster-android-instrument-logcat Show documentation
booster-android-instrument-logcat
The newest version!
package com.didiglobal.booster.instrument;
import java.io.OutputStream;
import java.io.PrintStream;
/**
*
* @author neighbWang
*/
public final class ShadowSystem {
public static final PrintStream out = new PrintStream(new OutputStream() {
@Override
public void write(final int b) {
}
});
public static final PrintStream err = out;
private ShadowSystem() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy