ultrasonic-app-subsonic-and.../core/pulltorefresh/src/main/java/com/handmark/pulltorefresh/library/internal/Utils.java

14 lines
345 B
Java

package com.handmark.pulltorefresh.library.internal;
import android.util.Log;
public class Utils {
static final String LOG_TAG = "PullToRefresh";
public static void warnDeprecation(String depreacted, String replacement) {
Log.w(LOG_TAG, "You're using the deprecated " + depreacted + " attr, please switch over to " + replacement);
}
}