Skip to content

Commit

Permalink
fixed typos in documentation and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasbehr committed Apr 11, 2024
1 parent b65ed59 commit 0e50d9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/task_documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: <code>true</code>/<code>false</code>)
that determines whether the renaming engine should generate pseudorandom
name mappings for each invocation. If set to <code>false</code> (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 <code>true</code>,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/yworks/yguard/obf/GuardDB.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0e50d9c

Please sign in to comment.