Cleanup comments

Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
Harsh Shandilya 2019-11-04 20:12:58 +05:30
parent 8fc7dd3d42
commit ed02961315
No known key found for this signature in database
GPG key ID: C2E74282C2133D62
2 changed files with 2 additions and 12 deletions

View file

@ -30,19 +30,12 @@ import java.util.Stack
/**
* A fragment representing a list of Items.
*
*
* Large screen devices (such as tablets) are supported by replacing the ListView with a
* GridView.
*
*
*
*/
class PasswordFragment
/**
* Mandatory empty constructor for the fragment manager to instantiate the fragment (e.g. upon
* screen orientation changes).
*/
: Fragment() {
class PasswordFragment : Fragment() {
// store the pass files list in a stack
private var passListStack: Stack<ArrayList<PasswordItem>> = Stack()
private var pathStack: Stack<File> = Stack()

View file

@ -28,12 +28,9 @@ import java.util.Stack
/**
* A fragment representing a list of Items.
*
*
* Large screen devices (such as tablets) are supported by replacing the ListView with a
* GridView.
*
*
*
*/
class SelectFolderFragment : Fragment() {