Skip to content

Commit

Permalink
fileKey() should return null if it's not supported
Browse files Browse the repository at this point in the history
  • Loading branch information
Xakep_SDK committed Oct 19, 2021
1 parent 202ca62 commit 0208828
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ public long size() {
/** @throws UnsupportedOperationException always */
@Override
public Object fileKey() {
throw new UnsupportedOperationException("Not supported yet.");
throw null;
}
} // FsNodeAttributes
}
}

0 comments on commit 0208828

Please sign in to comment.