Home
last modified time | relevance | path

Searched refs:commentsFileName (Results 1 – 1 of 1) sorted by relevance

/external/jdiff/src/jdiff/
DJDiff.java103 String commentsFileName = "user_comments_for_" + oldFileName.substring(0, suffix); in startGeneration() local
105 commentsFileName += "_to_" + newFileName.substring(0, suffix) + ".xml"; in startGeneration()
106 commentsFileName = commentsFileName.replace(' ', '_'); in startGeneration()
108 commentsFileName = HTMLReportGenerator.commentsDir + DIR_SEP + commentsFileName; in startGeneration()
110 commentsFileName = HTMLReportGenerator.outputDir + DIR_SEP + commentsFileName; in startGeneration()
112 … System.out.println("JDiff: reading the comments in from file '" + commentsFileName + "'..."); in startGeneration()
113 Comments existingComments = Comments.readFile(commentsFileName); in startGeneration()
128 … System.out.println("JDiff: writing the comments out to file '" + commentsFileName + "'..."); in startGeneration()
129 Comments.writeFile(commentsFileName, newComments); in startGeneration()