14 lines
177 B
Java
14 lines
177 B
Java
package com.stardust.util;
|
|
|
|
import android.support.annotation.Keep;
|
|
|
|
/**
|
|
* Created by Stardust on 2017/3/10.
|
|
*/
|
|
@Keep
|
|
public interface Consumer<T> {
|
|
|
|
void accept(T t);
|
|
|
|
}
|