Align serialVersionUID declaration with ASM master
Issue: SPR-17267
This commit is contained in:
parent
41e6aa6de2
commit
c3c2383b0d
|
|
@ -33,8 +33,8 @@ package org.springframework.asm;
|
||||||
*
|
*
|
||||||
* @author Jason Zaugg
|
* @author Jason Zaugg
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
|
||||||
public final class ClassTooLargeException extends IndexOutOfBoundsException {
|
public final class ClassTooLargeException extends IndexOutOfBoundsException {
|
||||||
|
private static final long serialVersionUID = 160715609518896765L;
|
||||||
|
|
||||||
private final String className;
|
private final String className;
|
||||||
private final int constantPoolCount;
|
private final int constantPoolCount;
|
||||||
|
|
|
||||||
|
|
@ -33,8 +33,8 @@ package org.springframework.asm;
|
||||||
*
|
*
|
||||||
* @author Jason Zaugg
|
* @author Jason Zaugg
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
|
||||||
public final class MethodTooLargeException extends IndexOutOfBoundsException {
|
public final class MethodTooLargeException extends IndexOutOfBoundsException {
|
||||||
|
private static final long serialVersionUID = 6807380416709738314L;
|
||||||
|
|
||||||
private final String className;
|
private final String className;
|
||||||
private final String methodName;
|
private final String methodName;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue