Kaydet (Commit) 2e886849 authored tarafından Christian Lohmaier's avatar Christian Lohmaier

android: otg_missing_error is not a format string

Change-Id: I8d06218b595f619c12d0402f8d8319a35a37daa1
üst 4a84cbaa
......@@ -63,7 +63,7 @@ public class OTGDocumentsProvider implements IExternalDocumentProvider,
File f = IOUtils.getFileFromURIString(rootPathURI);
if(IOUtils.isInvalidFile(f)) {
//missing device
throw new RuntimeException(context.getString(R.string.otg_missing_error, context));
throw new RuntimeException(context.getString(R.string.otg_missing_error));
}
return new LocalFile(f);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment