+ Added compare and info commands

This commit is contained in:
Matthew Cech
2019-05-05 16:38:59 -07:00
parent 55411cfe14
commit 3a8306f1e6
9 changed files with 120 additions and 30 deletions
+7 -1
View File
@@ -35,6 +35,12 @@ public class LocStrings extends LocBase
public static String Stub(String toStub)
{
return instance.GetKey(toStub);
return Lookup(toStub);
}
// Won't be picked up when scraping
public static String Lookup(String stubbedPreviously)
{
return instance.GetKey(stubbedPreviously);
}
}