Skip to content

Commit

Permalink
Make ReleaseFamilyIdentifier serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
mbladel committed Apr 14, 2023
1 parent 1382929 commit fb788ba
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit fb788ba

Please sign in to comment.