Skip to content

Commit 612dc36

Browse files
committed
Format Java code a bit more consistently
1 parent 63b2882 commit 612dc36

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

tray/android/src/io/github/martchus/syncthingtray/Activity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ void handleSendText(Intent intent) {
116116
}
117117
}
118118

119-
public void onCreate (Bundle savedInstanceState) {
119+
public void onCreate(Bundle savedInstanceState) {
120120
Log.i(TAG, "Creating");
121121
super.onCreate(savedInstanceState);
122122
Intent intent = getIntent();

tray/android/src/io/github/martchus/syncthingtray/SyncthingService.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
import io.github.martchus.syncthingtray.Activity;
1717
import io.github.martchus.syncthingtray.SyncthingServiceBinder;
1818

19-
public class SyncthingService extends Service
20-
{
19+
public class SyncthingService extends Service {
2120
private final SyncthingServiceBinder m_binder = new SyncthingServiceBinder(this);
2221
private static final String TAG = "SyncthingService";
2322
private static SyncthingService s_instance = null;

0 commit comments

Comments
 (0)