-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
591 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Lorenz 0.5.7 | ||
=== | ||
|
||
## Fixes | ||
|
||
- CSRG and TSRG now ignore package mappings, rather than erroneously reading them | ||
as class mappings. | ||
- `MappingSet#deobfuscate(FieldType)` will now correctly de-obfuscate object types | ||
of inner classes, where the parent class has a mapping - but the inner class | ||
does not. | ||
- [GH-29]\: Avoid inheriting field mappings from a parent where the child class has | ||
a field of its own, of the same signature. | ||
|
||
[GH-29]: https://github.com/CadixDev/Lorenz/issues/29 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
lorenz/src/main/java/org/cadixdev/lorenz/util/BinaryTool.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* This file is part of Lorenz, licensed under the MIT License (MIT). | ||
* | ||
* Copyright (c) Jamie Mansfield <https://www.jamierocks.uk/> | ||
* Copyright (c) contributors | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
|
||
package org.cadixdev.lorenz.util; | ||
|
||
/** | ||
* A utility for working with binary names in Lorenz. | ||
* | ||
* @author Jamie Mansfield | ||
* @since 0.5.7 | ||
*/ | ||
public final class BinaryTool { | ||
|
||
/** | ||
* Gets the split hierarchy of a binary name. | ||
* <p> | ||
* For example, calling {@code from("a$b$c"}} would produce | ||
* {@code ["a", "b", "c"]}. | ||
* | ||
* @param binaryName The binary name | ||
* @return The name hierarchy | ||
*/ | ||
public static String[] from(final String binaryName) { | ||
return binaryName.split("\\$"); | ||
} | ||
|
||
/** | ||
* Gets the binary name for a split hierarchy. | ||
* | ||
* @param name The hierarchy | ||
* @return The binary name | ||
*/ | ||
public static String to(final String[] name) { | ||
final StringBuilder builder = new StringBuilder(); | ||
|
||
for (int i = 0; i < name.length; i++) { | ||
builder.append(name[i]); | ||
|
||
if (i != name.length - 1) { | ||
builder.append('$'); | ||
} | ||
} | ||
|
||
return builder.toString(); | ||
} | ||
|
||
private BinaryTool() { | ||
} | ||
|
||
} |
Oops, something went wrong.