diff options
| author | 2016-07-02 20:13:13 +1000 | |
|---|---|---|
| committer | 2016-07-02 20:13:13 +1000 | |
| commit | 74edc74c2c7b3236f00bf92499bb884837673b7d (patch) | |
| tree | 155556b4d6e390574f16082583f2853e35e3c716 /src/main/java/cuchaz/enigma/bytecode/MethodParametersAttribute.java | |
| parent | Renamed Fields (diff) | |
| download | enigma-fork-74edc74c2c7b3236f00bf92499bb884837673b7d.tar.gz enigma-fork-74edc74c2c7b3236f00bf92499bb884837673b7d.tar.xz enigma-fork-74edc74c2c7b3236f00bf92499bb884837673b7d.zip | |
Reformatting code
Diffstat (limited to 'src/main/java/cuchaz/enigma/bytecode/MethodParametersAttribute.java')
| -rw-r--r-- | src/main/java/cuchaz/enigma/bytecode/MethodParametersAttribute.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/cuchaz/enigma/bytecode/MethodParametersAttribute.java b/src/main/java/cuchaz/enigma/bytecode/MethodParametersAttribute.java index ee7ed87..bace3a0 100644 --- a/src/main/java/cuchaz/enigma/bytecode/MethodParametersAttribute.java +++ b/src/main/java/cuchaz/enigma/bytecode/MethodParametersAttribute.java | |||
| @@ -30,7 +30,7 @@ public class MethodParametersAttribute extends AttributeInfo { | |||
| 30 | 30 | ||
| 31 | // add the names to the class const pool | 31 | // add the names to the class const pool |
| 32 | ConstPool constPool = info.getConstPool(); | 32 | ConstPool constPool = info.getConstPool(); |
| 33 | List<Integer> parameterNameIndices = new ArrayList<Integer>(); | 33 | List<Integer> parameterNameIndices = new ArrayList<>(); |
| 34 | for (String name : names) { | 34 | for (String name : names) { |
| 35 | if (name != null) { | 35 | if (name != null) { |
| 36 | parameterNameIndices.add(constPool.addUtf8Info(name)); | 36 | parameterNameIndices.add(constPool.addUtf8Info(name)); |