Skip to content

Commit

Permalink
rename file
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinayagarwal committed Aug 20, 2024
1 parent b255498 commit e974ebd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
import java.util.concurrent.CompletableFuture;
import java.util.logging.Logger;

public class DownloadbleEmojiSpriteLoader implements EmojiSpriteLoader {
public class DownloadableEmojiSpriteLoader implements EmojiSpriteLoader {

private static final Logger LOG = Logger.getLogger(DownloadbleEmojiSpriteLoader.class.getName());
private static final Logger LOG = Logger.getLogger(DownloadableEmojiSpriteLoader.class.getName());

private static final String COMMIT_NUMBER = "063f328d7951cb2e2a6678b06dcbdf8dd599fad7"; // tag 15.0.1
private static final String EMOJI_PNG_URL = "https://github.com/iamcal/emoji-data/blob/" + COMMIT_NUMBER + "/sheets-clean/sheet_apple_%s_clean.png?raw=true";
Expand Down Expand Up @@ -87,7 +87,7 @@ public Image loadEmojiSprite(int size) {

@Override
public InputStream loadCSV() {
return DownloadbleEmojiSpriteLoader.class.getResourceAsStream("emoji.csv");
return DownloadableEmojiSpriteLoader.class.getResourceAsStream("emoji.csv");
}

private void downloadFile(URL url, Path filePath) throws IOException {
Expand Down

0 comments on commit e974ebd

Please sign in to comment.