Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
asm
asm
Commits
9e7afe5f
Commit
9e7afe5f
authored
Jan 11, 2018
by
Eric Bruneton
Browse files
Fix code style.
parent
d7594a2c
Pipeline
#609
passed with stage
in 5 minutes and 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
asm/src/main/java/org/objectweb/asm/Type.java
View file @
9e7afe5f
...
...
@@ -491,7 +491,7 @@ public class Type {
* @param numDimensions a number between 0 and {@link #getDimensions} (included).
* @return the type corresponding to this array type with 'numDimensions' less array dimensions.
*/
public
Type
getElementType
(
int
numDimensions
)
{
public
Type
getElementType
(
final
int
numDimensions
)
{
return
getType
(
valueBuffer
,
valueOffset
+
numDimensions
,
valueLength
-
numDimensions
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment