Fixes #2484 - Removed repeated null check
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
parent
52ffe24389
commit
4785662efa
|
@ -351,8 +351,7 @@ public class MimeTypes
|
|||
|
||||
if (type==null)
|
||||
{
|
||||
if (type==null)
|
||||
type=__dftMimeMap.get("*");
|
||||
type=__dftMimeMap.get("*");
|
||||
}
|
||||
|
||||
return type;
|
||||
|
|
Loading…
Reference in New Issue