Skip to content
This repository has been archived by the owner on Feb 11, 2022. It is now read-only.

Commit

Permalink
Just clean up some formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
spacecowboy committed Oct 22, 2016
1 parent 101aa70 commit 1d40d6b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import org.junit.Test;

import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;

public class UtilsTest {

Expand Down Expand Up @@ -46,4 +46,4 @@ public void appendSlashesSlashesSlashes() throws Exception {
assertEquals("A/B", Utils.appendPath("A//", "///B"));
assertEquals("/", Utils.appendPath("////", "/////"));
}
}
}
16 changes: 8 additions & 8 deletions sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@

<!-- Sample app -->
<activity
android:name="com.nononsenseapps.filepicker.sample.NoNonsenseFilePicker"
android:name=".NoNonsenseFilePicker"
android:label="@string/title_activity_no_nonsense_file_picker">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<!-- Sample test app -->
<!-- Test activity, required to deal with runtime permissions -->
<activity
android:name="com.nononsenseapps.filepicker.sample.NoNonsenseFilePickerTest"
android:name=".NoNonsenseFilePickerTest"
android:label="@string/title_activity_no_nonsense_file_picker"/>

<!-- SD-card pickers -->
Expand All @@ -58,7 +58,7 @@
</activity>

<activity
android:name="com.nononsenseapps.filepicker.sample.FilePickerActivity2"
android:name=".FilePickerActivity2"
android:label="@string/title_activity_no_nonsense_file_picker"
android:theme="@style/SampleThemeLight">
<intent-filter>
Expand Down Expand Up @@ -129,22 +129,22 @@

<!-- FtpPickers -->
<activity
android:name="com.nononsenseapps.filepicker.sample.ftp.FtpPickerActivity"
android:name=".ftp.FtpPickerActivity"
android:label="@string/title_activity_no_nonsense_file_picker"
android:theme="@style/SampleTheme" />
<activity
android:name="com.nononsenseapps.filepicker.sample.ftp.FtpPickerActivity2"
android:name=".ftp.FtpPickerActivity2"
android:label="@string/title_activity_no_nonsense_file_picker"
android:theme="@style/SampleThemeLight" />

<!-- Dropbox pickers -->
<activity
android:name="com.nononsenseapps.filepicker.sample.dropbox.DropboxFilePickerActivity"
android:name=".dropbox.DropboxFilePickerActivity"
android:label="@string/title_activity_no_nonsense_file_picker"
android:theme="@style/SampleTheme">
</activity>
<activity
android:name="com.nononsenseapps.filepicker.sample.dropbox.DropboxFilePickerActivity2"
android:name=".dropbox.DropboxFilePickerActivity2"
android:label="@string/title_activity_no_nonsense_file_picker"
android:theme="@style/SampleThemeLight">
</activity>
Expand Down

0 comments on commit 1d40d6b

Please sign in to comment.