Back to project page built.io-todo-android.
The source code is released under:
Terms of Use & Licensing<br />Hand Drawn Web Icon Set is free and it will always be free. You can use it for both commercial and non-commercial projects. You can modify the icons anyway you like. Howe...
If you think the Android project built.io-todo-android 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.raweng.built.userInterface.pulltorefresh.internal; //from www. jav a2 s .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); } }