Check if a version is earlier or equal to the current pcgen version. @param version PCGen version to be checked. @return True if the version is before or equal to the current pcgen version.
(String version)
| 453 | * version. |
| 454 | */ |
| 455 | public static boolean isPriorToCurrent(String version) |
| 456 | { |
| 457 | return CoreUtility.compareVersions(version, PCGenPropBundle.getVersionNumber()) <= 0; |
| 458 | } |
| 459 | |
| 460 | /** |
| 461 | * Convert a PCGen version to its numerical format. |