From cfd809995e1431d71ace30cf34506ce14b82caa2 Mon Sep 17 00:00:00 2001 From: Mike Leonard Date: Fri, 11 Mar 2016 12:08:29 +1100 Subject: [PATCH] Comment changes to make it more obvious that in the builder the files base directory is the source directory. --- src/com/fivium/scriptrunner2/ScriptBuilder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/fivium/scriptrunner2/ScriptBuilder.java b/src/com/fivium/scriptrunner2/ScriptBuilder.java index 23edf09..c3260e0 100644 --- a/src/com/fivium/scriptrunner2/ScriptBuilder.java +++ b/src/com/fivium/scriptrunner2/ScriptBuilder.java @@ -182,7 +182,7 @@ public void run() /** * Gets a file from this ScriptRunner's base directory. - * @param pPath A path to the desired file, relative to the base directory. + * @param pPath A path to the desired file, relative to the source directory. * @return The requested file. * @throws FileNotFoundException If the file does not exist. */ @@ -198,7 +198,7 @@ public File resolveFile(String pPath) } /** - * Gets the path of the given file relativised to the current base directory and normalised. + * Gets the path of the given file relativised to the current source directory and normalised. * @param pFile File to get path of. * @return Relativised file path. */