Skip to content

Commit

Permalink
Naming fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Gonzales committed Aug 6, 2015
1 parent 389feb5 commit 95f2cfd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/com/pnf/plugin/obb/ObbPlugin.java
Expand Up @@ -38,12 +38,11 @@
public class ObbPlugin extends AbstractUnitIdentifier {
public static final ILogger LOG = GlobalLog.getLogger(ObbPlugin.class);
private static final int[] OBB_SIG = { (byte)0x83, (byte)0x99, (byte)0x05, (byte)0x01 };
public static String ID = "obb_plugin";
public static String OBB_NAME = "obb_file";
public static String FAT_IMAGE_NAME = "obb_image";
public static final String ID = "obb";
public static final String FAT_IMAGE_NAME = "obb_image";

public ObbPlugin() {
super(OBB_NAME, 1); // Give ObbPlugin higher priority than FatPlugin to
super(ID, 1); // Give ObbPlugin higher priority than FatPlugin to
// make sure we enter this plugin first
}

Expand Down
2 changes: 1 addition & 1 deletion src/com/pnf/plugin/obb/ObbUnit.java
Expand Up @@ -37,7 +37,7 @@ public class ObbUnit extends AbstractBinaryUnit {

public ObbUnit(ObbData image, String name, IInput data, IUnitProcessor unitProcessor, IUnitCreator parent,
IPropertyDefinitionManager pdm) {
super(null, data, ObbPlugin.OBB_NAME, name, unitProcessor, parent, pdm);
super(null, data, ObbPlugin.ID, name, unitProcessor, parent, pdm);
this.image = image;
}

Expand Down

0 comments on commit 95f2cfd

Please sign in to comment.