|
From: <her...@us...> - 2025-10-25 11:30:34
|
Revision: 25773
http://sourceforge.net/p/jedit/svn/25773
Author: hertzhaft
Date: 2025-10-25 11:30:31 +0000 (Sat, 25 Oct 2025)
Log Message:
-----------
brought back method name TemplatesPlugin.getTemplateDir, used by XML plugin
Modified Paths:
--------------
plugins/Templates/trunk/templates/TemplatesPlugin.java
Modified: plugins/Templates/trunk/templates/TemplatesPlugin.java
===================================================================
--- plugins/Templates/trunk/templates/TemplatesPlugin.java 2025-03-20 19:40:06 UTC (rev 25772)
+++ plugins/Templates/trunk/templates/TemplatesPlugin.java 2025-10-25 11:30:31 UTC (rev 25773)
@@ -61,7 +61,7 @@
}
/**
- * Returns the directory where templates are stored
+ * Returns the directory name where templates are stored
*
* @return A string containing the template directory path.
*/
@@ -76,6 +76,15 @@
}
/**
+ * Returns the directory name where templates are stored
+ * (previous method name, restored for backward compatibility)
+ */
+ public static String getTemplateDir()
+ {
+ return getTemplateDirName();
+ }
+
+ /**
* Change the directory where templates are stored
*
* @param templateDirVal The new templates directory
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|