Back to project page Android-PullToRefreshWithProgressBar.
The source code is released under:
Apache License
If you think the Android project Android-PullToRefreshWithProgressBar listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.handmark.pulltorefresh.library.internal; /* w ww. java 2s .c o m*/ 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); } }