Remove unused checkJava from demo

This commit is contained in:
Brendan Coles
2019-02-17 04:37:59 +00:00
parent 027e312f30
commit 47ae0436a3
3 changed files with 0 additions and 25 deletions

Binary file not shown.

View File

@@ -1,25 +0,0 @@
/*
* Copyright (c) 2006-2019 Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - http://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
import java.io.*;
import java.util.*;
import java.net.*;
import java.applet.*;
// Keith Lee
// Twitter: @keith55
// http://milo2012.wordpress.com
// keith.lee2012[at]gmail.com
public class checkJava extends Applet{
public static int results = 0;
public void init() {
}
public int getInfo() {
results = 1;
return results;
}
}