Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public class Test {
public Test() {
}
/**
* @deprecated
*/
public void doIt() {
System.out.println("Executing Test.doIt()");
}
public static void main(String args[]) {
Test test = new Test();
test.doIt();
}
}
public class TestDeprecated {
public TestDeprecated () {
}
public static void main(String args[]) {
Test test = new Test();
test.doIt();
}
}