Skip to content

Commit

Permalink
Make pattern static.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Nov 29, 2024
1 parent 8f4f056 commit e3d0022
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class DeepboxIdProvider extends CachingFileIdProvider implements FileIdPr
private final int chunksize;
private final DeepboxPathContainerService containerService;

private Pattern SHARED = Pattern.compile("(.*)\\s\\((.*)\\)");
private static final Pattern SHARED = Pattern.compile("(.*)\\s\\((.*)\\)");

public DeepboxIdProvider(final DeepboxSession session) {
super(session.getCaseSensitivity());
Expand Down

0 comments on commit e3d0022

Please sign in to comment.