Skip to content

Commit

Permalink
Merge pull request #3796 from melissalinkert/java-internal-serialization
Browse files Browse the repository at this point in the history
Make private Pattern field transient
  • Loading branch information
dgault authored May 19, 2022
2 parents 4d97456 + ec50621 commit e8ad930
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public class CellomicsReader extends FormatReader {
private static final Pattern PATTERN_O = Pattern.compile("(.*)_(\\p{Alpha}\\d{2})(f\\d{2,3})?(o\\d+)?[^_]+$");
private static final Pattern PATTERN_D = Pattern.compile("(.*)_(\\p{Alpha}\\d{2})(f\\d{2,3})?(d\\d+)?[^_]+$");

private Pattern cellomicsPattern;
private transient Pattern cellomicsPattern;

private ArrayList<ChannelFile> files = new ArrayList<ChannelFile>();

Expand Down

0 comments on commit e8ad930

Please sign in to comment.