Skip to content

Commit

Permalink
HHH-12495 - Cache statistics (binary compatibility)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebersole committed Apr 17, 2018
1 parent a63c4fe commit d321858
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -6,6 +6,7 @@
*/
package org.hibernate.stat.internal;

import java.io.Serializable;
import java.util.HashSet;
import java.util.Set;
import java.util.concurrent.atomic.AtomicLong;
Expand All @@ -29,7 +30,7 @@
* @author Eric Dalquist
*/
@Deprecated
public class DeprecatedNaturalIdCacheStatisticsImpl implements NaturalIdCacheStatistics {
public class DeprecatedNaturalIdCacheStatisticsImpl implements NaturalIdCacheStatistics, Serializable {
private final String regionName;
private final transient Set<NaturalIdDataAccess> accessStrategies;

Expand Down

0 comments on commit d321858

Please sign in to comment.