mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-16 16:15:06 +00:00
Make ReleaseFamilyIdentifier serializable
This commit is contained in:
parent
787eaf5f60
commit
a034550bc2
@ -6,12 +6,14 @@
|
||||
*/
|
||||
package org.hibernate.orm;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Major/family version component pair
|
||||
*
|
||||
* @author Steve Ebersole
|
||||
*/
|
||||
public class ReleaseFamilyIdentifier implements Comparable<ReleaseFamilyIdentifier> {
|
||||
public class ReleaseFamilyIdentifier implements Comparable<ReleaseFamilyIdentifier>, Serializable {
|
||||
private final int majorVersion;
|
||||
private final int familyVersion;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user