If I have two methods with the same signature except for a Type modifier, the minifier will crash with a SystemArgumentException (see stacktrace).
Example:
class ABC {
public void Test<String>() {
}
public void Test() {
}
}
EDIT: This also happens if the methods have different Type modifiers (e.g. <int> and <String>).
If I have two methods with the same signature except for a Type modifier, the minifier will crash with a SystemArgumentException (see stacktrace).
Example:
class ABC {
EDIT: This also happens if the methods have different Type modifiers (e.g. <int> and <String>).