Skip to content

Commit 08f29bb

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

File tree

1 file changed

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

1 file changed

+4
-1
lines changed

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

Lines changed: 4 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.
@@ -57,6 +57,9 @@ public final class MessageHistory implements List<Properties>, Serializable {
5757

5858
private static final Log LOGGER = LogFactory.getLog(MessageHistory.class);
5959

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

0 commit comments

Comments
 (0)