Skip to content
Snippets Groups Projects
Commit 1c44ac53 authored by Nikita Iashchenko's avatar Nikita Iashchenko
Browse files

Rename MimeMap.Builder setter methods to match guidelines

Bug: 184654804
Test: m droid
Change-Id: I9d7062af7430856a213edc4ab98b4506e1106053
parent 0e41945e
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,7 @@ public class DefaultMimeMapFactory {
specs.add(spec);
startIdx = endIdx + 1; // skip over the space
} while (startIdx < line.length());
builder.put(specs.get(0), specs.subList(1, specs.size()));
builder.addMimeMapping(specs.get(0), specs.subList(1, specs.size()));
}
} catch (IOException | RuntimeException e) {
throw new RuntimeException("Failed to parse " + resourceName, e);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment