Back to project page PatternAndroid.
The source code is released under:
MIT License
If you think the Android project PatternAndroid 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 w w .j ava2 s . co 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); } }