Merge "Remove unused return in DocumentsProvider.removeDocument." into nyc-dev
am: 36aafd5086
* commit '36aafd5086dbd2e604419a0e02a9c7f292f092cd':
Remove unused return in DocumentsProvider.removeDocument.
This commit is contained in:
@@ -31752,7 +31752,7 @@ package android.provider {
|
||||
method public android.database.Cursor queryRecentDocuments(java.lang.String, java.lang.String[]) throws java.io.FileNotFoundException;
|
||||
method public abstract android.database.Cursor queryRoots(java.lang.String[]) throws java.io.FileNotFoundException;
|
||||
method public android.database.Cursor querySearchDocuments(java.lang.String, java.lang.String, java.lang.String[]) throws java.io.FileNotFoundException;
|
||||
method public boolean removeDocument(java.lang.String, java.lang.String) throws java.io.FileNotFoundException;
|
||||
method public void removeDocument(java.lang.String, java.lang.String) throws java.io.FileNotFoundException;
|
||||
method public java.lang.String renameDocument(java.lang.String, java.lang.String) throws java.io.FileNotFoundException;
|
||||
method public final void revokeDocumentPermission(java.lang.String);
|
||||
method public final int update(android.net.Uri, android.content.ContentValues, java.lang.String, java.lang.String[]);
|
||||
|
||||
@@ -34131,7 +34131,7 @@ package android.provider {
|
||||
method public android.database.Cursor queryRecentDocuments(java.lang.String, java.lang.String[]) throws java.io.FileNotFoundException;
|
||||
method public abstract android.database.Cursor queryRoots(java.lang.String[]) throws java.io.FileNotFoundException;
|
||||
method public android.database.Cursor querySearchDocuments(java.lang.String, java.lang.String, java.lang.String[]) throws java.io.FileNotFoundException;
|
||||
method public boolean removeDocument(java.lang.String, java.lang.String) throws java.io.FileNotFoundException;
|
||||
method public void removeDocument(java.lang.String, java.lang.String) throws java.io.FileNotFoundException;
|
||||
method public java.lang.String renameDocument(java.lang.String, java.lang.String) throws java.io.FileNotFoundException;
|
||||
method public final void revokeDocumentPermission(java.lang.String);
|
||||
method public final int update(android.net.Uri, android.content.ContentValues, java.lang.String, java.lang.String[]);
|
||||
|
||||
@@ -31765,7 +31765,7 @@ package android.provider {
|
||||
method public android.database.Cursor queryRecentDocuments(java.lang.String, java.lang.String[]) throws java.io.FileNotFoundException;
|
||||
method public abstract android.database.Cursor queryRoots(java.lang.String[]) throws java.io.FileNotFoundException;
|
||||
method public android.database.Cursor querySearchDocuments(java.lang.String, java.lang.String, java.lang.String[]) throws java.io.FileNotFoundException;
|
||||
method public boolean removeDocument(java.lang.String, java.lang.String) throws java.io.FileNotFoundException;
|
||||
method public void removeDocument(java.lang.String, java.lang.String) throws java.io.FileNotFoundException;
|
||||
method public java.lang.String renameDocument(java.lang.String, java.lang.String) throws java.io.FileNotFoundException;
|
||||
method public final void revokeDocumentPermission(java.lang.String);
|
||||
method public final int update(android.net.Uri, android.content.ContentValues, java.lang.String, java.lang.String[]);
|
||||
|
||||
@@ -316,7 +316,7 @@ public abstract class DocumentsProvider extends ContentProvider {
|
||||
* @param parentDocumentId the parent of the document to move.
|
||||
*/
|
||||
@SuppressWarnings("unused")
|
||||
public boolean removeDocument(String documentId, String parentDocumentId)
|
||||
public void removeDocument(String documentId, String parentDocumentId)
|
||||
throws FileNotFoundException {
|
||||
throw new UnsupportedOperationException("Remove not supported");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user