Skip to content

Commit

Permalink
Fixed build when ProGuard is enabled
Browse files Browse the repository at this point in the history
Summary: The interface needs to be public or ProGuard won't compile release builds.

Reviewed By: kirwan

Differential Revision: D5425151

fbshipit-source-id: 265324a57c663b6e483f7db69f33222ce46bbd0d
  • Loading branch information
oprisnik authored and facebook-github-bot committed Jul 14, 2017
1 parent b4633d2 commit 147c5e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ private FileInfo getShardFileInfo(File file) {
FileType.CONTENT,
FileType.TEMP,
})
private @interface FileType {
public @interface FileType {
String CONTENT = CONTENT_FILE_EXTENSION;
String TEMP = TEMP_FILE_EXTENSION;
}
Expand Down

0 comments on commit 147c5e2

Please sign in to comment.