Skip to content

Commit

Permalink
👕 #1814 Remove findbugs warning
Browse files Browse the repository at this point in the history
Suppressing the warning as the type is used in a specific context
where exposing that byte[] is not an issue.
  • Loading branch information
ljacomet committed Feb 10, 2017
1 parent 5540d61 commit d85bf0c
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,15 @@

package org.ehcache.clustered.common.internal.store;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;

import java.io.Serializable;
import java.util.Arrays;

/**
* ValueWrapper
*/
@SuppressFBWarnings("EI_EXPOSE_REP")
public class ValueWrapper implements Serializable {

private static final long serialVersionUID = -4794738044295644587L;
Expand Down

0 comments on commit d85bf0c

Please sign in to comment.