1
0
mirror of https://github.com/chylex/Code-Statistics.git synced 2025-08-01 12:59:01 +02:00

Add .jav extension as a Java code file

This commit is contained in:
chylex 2016-02-23 17:19:39 +01:00
parent f5caac32e0
commit 08bbe5e583

View File

@ -19,7 +19,7 @@ namespace CodeStatistics.Handling{
static HandlerList(){
UnknownFileHandler = new UnknownHandler();
AddFileHandler(new JavaHandler(),"java");
AddFileHandler(new JavaHandler(),new []{ "java", "jav" });
AddFileHandler(new AssetHandler(AssetHandler.Type.Image),new []{ "jpg", "jpeg", "gif", "png", "bmp", "ico", "icns", "tif", "tiff", "tga", "svg" });
AddFileHandler(new AssetHandler(AssetHandler.Type.Audio),new []{ "wav", "mp3", "ogg", "flac", "aiff", "wma", "m4a", "aac", "mid", "mod" });