Skip to content

Commit

Permalink
Rename mappings.obj -> mappings.bin
Browse files Browse the repository at this point in the history
Signed-off-by: Ross Allan <rallanpcl@gmail.com>
  • Loading branch information
LunNova committed May 29, 2013
1 parent 6f1e017 commit f350c5d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .gitattributes
@@ -1,2 +1 @@
*.obj -crlf
*.obj -text
*.bin binary
File renamed without changes.
2 changes: 1 addition & 1 deletion src/common/me/nallar/tickprofiler/util/MappingUtil.java
Expand Up @@ -12,7 +12,7 @@ public enum MappingUtil {

private static Map<String, String> getMappings() {
try {
ObjectInputStream s = new ObjectInputStream(MappingUtil.class.getResourceAsStream("/mappings.obj"));
ObjectInputStream s = new ObjectInputStream(MappingUtil.class.getResourceAsStream("/mappings.bin"));
try {
//noinspection unchecked
return (Map<String, String>) s.readObject();
Expand Down

0 comments on commit f350c5d

Please sign in to comment.