mirror of
https://github.com/nextcloud/android.git
synced 2024-11-28 02:17:43 +03:00
util: Made FileSortOrderByName and FileSortOrderBySize package private.
- Follows principle of least privilege.
This commit is contained in:
parent
bb9a6a5364
commit
754419090d
2 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ import third_parties.daveKoeller.AlphanumComparator;
|
|||
*/
|
||||
public class FileSortOrderByName extends FileSortOrder {
|
||||
|
||||
public FileSortOrderByName(String name, boolean ascending) {
|
||||
FileSortOrderByName(String name, boolean ascending) {
|
||||
super(name, ascending);
|
||||
}
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
|||
|
||||
public class FileSortOrderBySize extends FileSortOrder {
|
||||
|
||||
public FileSortOrderBySize(String name, boolean ascending) {
|
||||
FileSortOrderBySize(String name, boolean ascending) {
|
||||
super(name, ascending);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue