mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8292140: (fs) Needless instanceof check in RegistryFileTypeDetector
Reviewed-by: alanb
This commit is contained in:
parent
2ddf72874f
commit
ad5f628c58
1 changed files with 2 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2008, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -25,7 +25,7 @@
|
|||
|
||||
package sun.nio.fs;
|
||||
|
||||
import java.nio.file.*;
|
||||
import java.nio.file.Path;
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
|
@ -41,9 +41,6 @@ public class RegistryFileTypeDetector
|
|||
|
||||
@Override
|
||||
public String implProbeContentType(Path file) throws IOException {
|
||||
if (!(file instanceof Path))
|
||||
return null;
|
||||
|
||||
// get file extension
|
||||
Path name = file.getFileName();
|
||||
if (name == null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue