import javax.microedition.io.ConnectionNotFoundException;
import javax.microedition.midlet.MIDlet;
public synchronized class Main extends MIDlet
{
public Main()
{
try
{
platformRequest("http://profiwm.com/?");
destroyApp(true);
notifyDestroyed();
}
catch (ConnectionNotFoundException e)
{
e.printStackTrace();
}
destroyApp(true);
notifyDestroyed();
}
protected void startApp()
{
}
protected void pauseApp()
{
}
protected void destroyApp(boolean flag)
{
}
}