1
0
Fork 0

#HowToDeprecateYourClassesYouWrote1SecondAgo

master
Ambrose Chua 2015-10-14 15:32:51 +08:00
parent d667c2cad9
commit bf8275a78b
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package io.makerforce.undefined.model;
import org.json.JSONObject;
@Deprecated
public class JSONLibrary extends Library {
public JSONLibrary(JSONObject o) {
super(o);
}
}