mirror of
https://github.com/oxen-io/session-android.git
synced 2025-03-01 17:47:25 +00:00
braces around loop, proper spacing
// FREEBIE
This commit is contained in:
parent
7b0479ff0f
commit
213715a0dc
@ -493,9 +493,10 @@ public class ConversationFragment extends SherlockListFragment
|
|||||||
extension = "attach";
|
extension = "attach";
|
||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
File file = new File(outputDirectory, base+"."+extension);
|
File file = new File(outputDirectory, base + "." + extension);
|
||||||
while (file.exists())
|
while (file.exists()) {
|
||||||
file = new File(outputDirectory, base+"-"+(++i)+"."+extension);
|
file = new File(outputDirectory, base + "-" + (++i) + "." + extension);
|
||||||
|
}
|
||||||
|
|
||||||
return file;
|
return file;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user