Skip to content

Commit

Permalink
Make FilterFileManager related classes non final
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Panov committed Aug 27, 2015
1 parent 8238f25 commit db6dda5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

final class UsageError {
class UsageError {

private static final Logger LOGGER = LoggerFactory.getLogger(UsageError.class);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import static com.google.common.collect.Sets.newHashSet;
import static java.util.Collections.unmodifiableSet;

final class ValidActionEvaluation {
class ValidActionEvaluation {

private static final Set<String> VALID_GET_ACTIONS = unmodifiableSet(newHashSet("LIST", "DOWNLOAD"));
private static final Set<String> VALID_PUT_ACTIONS =
Expand Down

0 comments on commit db6dda5

Please sign in to comment.