remove duplicate entry of setContentView

Signed-off-by: alex <alex.plutta@googlemail.com>
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
alex 2019-08-19 19:46:06 +02:00 committed by Andy Scherzinger
parent cdd5d38d3d
commit 6ffa9d08fa
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -104,9 +104,9 @@ public class ActivitiesActivity extends FileActivity implements ActivityListInte
protected void onCreate(Bundle savedInstanceState) {
Log_OC.v(TAG, "onCreate() start");
super.onCreate(savedInstanceState);
mActionListener = new ActivitiesPresenter(activitiesRepository, filesRepository, this);
setContentView(R.layout.activity_list_layout);
setContentView(R.layout.activity_list_layout);
unbinder = ButterKnife.bind(this);