fix not implemented toast message

This commit is contained in:
Karim Mreisi 2015-01-22 09:01:30 +01:00
parent e39e0910a1
commit 005a96f3d3

View File

@ -38,10 +38,6 @@ public class VirtualControllerConfiguration extends Activity
// start with configuration constructor
virtualController = new VirtualController(frameLayout, getApplicationContext(), getWindowManager());
Toast toast = new Toast(this);
toast.setText("Not implemented yet!");
toast.setDuration(Toast.LENGTH_SHORT);
toast.show();
Toast.makeText(getApplicationContext(), "Not implemented yet!", Toast.LENGTH_SHORT).show();
}
}