Ignore:
Timestamp:
2023-04-04T18:46:51+12:00 (13 months ago)
Author:
anupama
Message:

Attempting to fix GS3 compile error.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/util/GSFile.java

    r37597 r37601  
    629629            {
    630630                if (current.getName().startsWith(".#")) {
    631                 logger.info("Skipping the XSL file: " + current.getCanonicalPath());
     631                try {
     632                    logger.info("Skipping the XSL file: " + current.getCanonicalPath());
     633                } catch(IOException ioe) {
     634                    logger.info("Couldn't log XSL file canonicalpath due to IOException " + ioe);
     635                    logger.info("Skipping the XSL file: " + current.toString());
     636                }
    632637                }
    633638                else {
Note: See TracChangeset for help on using the changeset viewer.