mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 19:52:17 -05:00
Improved some comments
This commit is contained in:
parent
db2b177a79
commit
f9d828a62c
@ -172,8 +172,8 @@ public class StorageManager
|
|||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Moreover, this class validates the denoted storage path matches against
|
* Moreover, this class validates the denoted storage path against mount
|
||||||
* mount points using {@link StorageManager#isMountPoint(File)}.
|
* points using {@link StorageManager#isMountPoint(File)}.
|
||||||
* </p>
|
* </p>
|
||||||
*/
|
*/
|
||||||
public abstract static class FixedStorageProviderBase implements StorageProvider
|
public abstract static class FixedStorageProviderBase implements StorageProvider
|
||||||
@ -413,7 +413,7 @@ public class StorageManager
|
|||||||
* Storage provider to allow access the /emmc directory on a HTC Incredible.
|
* Storage provider to allow access the /emmc directory on a HTC Incredible.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This implementation is experimental and untested.
|
* This implementation is experimental and _untested_.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* See http://groups.google.com/group/android-developers/browse_frm/thread/96f15e57150ed173
|
* See http://groups.google.com/group/android-developers/browse_frm/thread/96f15e57150ed173
|
||||||
@ -451,10 +451,10 @@ public class StorageManager
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Storage provider to allow access the /emmc directory on a Samsung Galaxy S.
|
* Storage provider to allow access the Samsung Galaxy S 'internal SD card'.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This implementation is experimental and untested.
|
* This implementation is experimental and _untested_.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* See http://groups.google.com/group/android-developers/browse_frm/thread/a1adf7122a75a657
|
* See http://groups.google.com/group/android-developers/browse_frm/thread/a1adf7122a75a657
|
||||||
@ -585,6 +585,10 @@ public class StorageManager
|
|||||||
*
|
*
|
||||||
* HTC Incredible storage and Samsung Galaxy S are omitted on purpose
|
* HTC Incredible storage and Samsung Galaxy S are omitted on purpose
|
||||||
* (they're experimental and I don't have those devices to test).
|
* (they're experimental and I don't have those devices to test).
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* !!! Make sure InternalStorageProvider is the first provider as it'll
|
||||||
|
* be considered as the default provider !!!
|
||||||
*/
|
*/
|
||||||
final List<StorageProvider> allProviders = Arrays.asList(new InternalStorageProvider(),
|
final List<StorageProvider> allProviders = Arrays.asList(new InternalStorageProvider(),
|
||||||
new ExternalStorageProvider());
|
new ExternalStorageProvider());
|
||||||
|
Loading…
Reference in New Issue
Block a user