(String name, boolean hasUnderscore)
| 1225 | } |
| 1226 | |
| 1227 | private static boolean validMacroName(String name, boolean hasUnderscore) { |
| 1228 | return (hasUnderscore&&name.endsWith(".txt")) || name.endsWith(".ijm") |
| 1229 | || name.endsWith(".js") || name.endsWith(".bsh") || name.endsWith(".py"); |
| 1230 | } |
| 1231 | |
| 1232 | /** Installs a plugin in the Plugins menu using the class name, |
| 1233 | with underscores replaced by spaces, as the command. */ |
no outgoing calls
no test coverage detected