Skip to content

Commit

Permalink
add future comment (no code change)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jun 28, 2024
1 parent 6749f95 commit 8bb23bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/commons/io/res/ResourcesImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public ResourceProvider instance() {
* @return matching resource
*/
@Override
public Resource getResource(String path) {
public Resource getResource(String path) { // FUTURE throw IOException
int index = path.indexOf("://");
if (index != -1) {
String scheme = path.substring(0, index).toLowerCase().trim();
Expand Down

0 comments on commit 8bb23bd

Please sign in to comment.