diff --git a/docs/task_documentation.md b/docs/task_documentation.md index 4dd6a66..0ca6054 100644 --- a/docs/task_documentation.md +++ b/docs/task_documentation.md @@ -426,7 +426,7 @@ The basic idea is, that all elements will be renamed by this task. There are dif A boolean attribute (valid values: true/false) that determines whether the renaming engine should generate pseudorandom name mappings for each invocation. If set to false (the - default, for backward compatibility), each obfuscation will used a + default, for backward compatibility), each obfuscation will use a fixed map that generates names based on the order of the obfuscated elements. If nothing is changed, each obfuscation will generate the same obfuscated names for all elements. If set to true, diff --git a/src/main/java/com/yworks/yguard/obf/GuardDB.java b/src/main/java/com/yworks/yguard/obf/GuardDB.java index a9af63b..6884aeb 100644 --- a/src/main/java/com/yworks/yguard/obf/GuardDB.java +++ b/src/main/java/com/yworks/yguard/obf/GuardDB.java @@ -349,7 +349,7 @@ public void remapTo(File[] out, for(int i = 0; i < inJar.length; i++) { outJar = null; - //store the whole jar in memory, I known this might be alot, but anyway + //store the whole jar in memory, I know this might be alot, but anyway //this is the best option, if you want to create correct jar files... List jarEntries = new ArrayList(); try