Skip to content

Commit 57acd71

Browse files
Vladimir Kotalahornace
Vladimir Kotal
authored andcommitted
add javadoc
1 parent 9554a08 commit 57acd71

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

opengrok-web/src/main/java/org/opengrok/web/PageConfig.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1104,6 +1104,9 @@ public String getPath() {
11041104
return path;
11051105
}
11061106

1107+
/**
1108+
* @return true if file/directory corrsponding to the request path exists however is unreadable, false otherwise
1109+
*/
11071110
public boolean isUnreadable() {
11081111
File f = new File(getSourceRootPath(), getPath());
11091112
return f.exists() && !f.canRead();

0 commit comments

Comments
 (0)