Skip to content

Commit

Permalink
No Kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
renzaspiras committed Apr 7, 2024
1 parent c0793f5 commit 3fc435f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 18 deletions.
9 changes: 0 additions & 9 deletions app/src/main/java/com/termux/app/TermuxActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -492,8 +492,6 @@ public void onRequestPermissionsResult(int requestCode, String[] permissions, in
Conduct.onRequestPermissionsResult(requestCode, permissions, grantResults, this);
}



@Override
public void onServiceDisconnected(ComponentName name) {
Logger.logDebug(LOG_TAG, "onServiceDisconnected");
Expand All @@ -502,20 +500,13 @@ public void onServiceDisconnected(ComponentName name) {
finishActivityIfNotFinishing();
}






private void reloadProperties() {
mProperties.loadTermuxPropertiesFromDisk();

if (mTermuxTerminalViewClient != null)
mTermuxTerminalViewClient.onReloadProperties();
}



private void setActivityTheme() {
// Update NightMode.APP_NIGHT_MODE
TermuxThemeUtils.setAppNightMode(mProperties.getNightMode());
Expand Down
9 changes: 9 additions & 0 deletions app/src/main/java/com/termux/app/terminal/Lazy/Clock.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.termux.app.terminal.Lazy;

import android.os.Handler;

public class Clock {
public void CommandDelay(int totalDellayMillis, Runnable action){
new Handler().postDelayed(action, (long) totalDellayMillis);
}
}
9 changes: 0 additions & 9 deletions app/src/main/java/com/termux/app/terminal/Lazy/Clock.kt

This file was deleted.

0 comments on commit 3fc435f

Please sign in to comment.