File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
app/src/main/java/com/nutomic/syncthingandroid/model Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public class Folder {
25
25
public int rescanIntervalS = 3600 ;
26
26
public boolean ignorePerms = true ;
27
27
public boolean autoNormalize = true ;
28
- public MinDiskFree minDiskFree ;
28
+ public static MinDiskFree minDiskFree ;
29
29
public Versioning versioning ;
30
30
public int copiers = 0 ;
31
31
public int pullerMaxPendingKiB ;
@@ -50,11 +50,6 @@ public static class Versioning implements Serializable {
50
50
public Map <String , String > params = new HashMap <>();
51
51
}
52
52
53
- public static class MinDiskFree {
54
- public float value ;
55
- public String unit ;
56
- }
57
-
58
53
public void addDevice (final Device device ) {
59
54
Device d = new Device ();
60
55
d .deviceID = device .deviceID ;
Original file line number Diff line number Diff line change
1
+ package com .nutomic .syncthingandroid .model ;
2
+
3
+ public class MinDiskFree {
4
+ public float value ;
5
+ public String unit ;
6
+ }
You can’t perform that action at this time.
0 commit comments