Fixes #2484 - Removed repeated null check

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2018-05-29 17:52:57 +10:00
parent 52ffe24389
commit 4785662efa
1 changed files with 1 additions and 2 deletions

View File

@ -351,8 +351,7 @@ public class MimeTypes
if (type==null)
{
if (type==null)
type=__dftMimeMap.get("*");
type=__dftMimeMap.get("*");
}
return type;