Skip to content

Commit e11ebd9

Browse files
committed
Add serialVersionUID to MessageHistory
Fixes spring-projectsgh-3737
1 parent 9759950 commit e11ebd9

File tree

1 file changed

+5
-1
lines changed
  • spring-integration-core/src/main/java/org/springframework/integration/history

1 file changed

+5
-1
lines changed

spring-integration-core/src/main/java/org/springframework/integration/history/MessageHistory.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2021 the original author or authors.
2+
* Copyright 2002-2022 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -49,6 +49,7 @@
4949
* @author Mark Fisher
5050
* @author Artem Bilan
5151
* @author Gary Russell
52+
* @author Chris Bono
5253
*
5354
* @since 2.0
5455
*/
@@ -57,6 +58,9 @@ public final class MessageHistory implements List<Properties>, Serializable {
5758

5859
private static final Log LOGGER = LogFactory.getLog(MessageHistory.class);
5960

61+
// NOTE: Id generated by serialver.exe against 5.1 version MessageHistory.class
62+
private static final long serialVersionUID = 1426799817181873282L;
63+
6064
private static final UnsupportedOperationException UNSUPPORTED_OPERATION_EXCEPTION_IMMUTABLE =
6165
new UnsupportedOperationException("MessageHistory is immutable.");
6266

0 commit comments

Comments
 (0)