Changeset 37597 for main


Ignore:
Timestamp:
2023-04-02T18:05:25+12:00 (13 months ago)
Author:
davidb
Message:

Added in check to avoid reading in emacs auto-save buffer files (given partial state of editing, potentially invalid syntax anyway)

File:
1 edited

Legend:

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

    r35390 r37597  
    628628            else if (current.getName().endsWith(".xsl"))
    629629            {
     630                if (current.getName().startsWith(".#")) {
     631                logger.info("Skipping the XSL file: " + current.getCanonicalPath());
     632                }
     633                else {
    630634                filesToReturn.add(current);
     635                }
    631636            }
    632637        }
Note: See TracChangeset for help on using the changeset viewer.