< prev index next >

src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipPath.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2009, 2018, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2009, 2019, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 91,101 **** else return null; } @Override ! public Path getFileName() { int off = path.length; if (off == 0 || off == 1 && path[0] == '/') return null; while (--off >= 0 && path[off] != '/') {} if (off < 0) --- 91,101 ---- else return null; } @Override ! public ZipPath getFileName() { int off = path.length; if (off == 0 || off == 1 && path[0] == '/') return null; while (--off >= 0 && path[off] != '/') {} if (off < 0)
< prev index next >