Skip to content
Snippets Groups Projects
Commit a8d423b1 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

remove ws

parent 37ba7915
No related branches found
No related tags found
1 merge request!816GMM Services
...@@ -18,7 +18,6 @@ public class HazVersion implements AppVersion { ...@@ -18,7 +18,6 @@ public class HazVersion implements AppVersion {
var versions = new ArrayList<VersionInfo>(); var versions = new ArrayList<VersionInfo>();
versions.add(new HazVersion().getVersionInfo()); versions.add(new HazVersion().getVersionInfo());
versions.add(new LibVersion().getVersionInfo()); versions.add(new LibVersion().getVersionInfo());
versions.add(new WsUtilsVersion().getVersionInfo());
var nshmVersion = getNshmVersion(modelPath); var nshmVersion = getNshmVersion(modelPath);
...@@ -29,6 +28,14 @@ public class HazVersion implements AppVersion { ...@@ -29,6 +28,14 @@ public class HazVersion implements AppVersion {
return versions.toArray(new VersionInfo[0]); return versions.toArray(new VersionInfo[0]);
} }
public static VersionInfo[] appVersions() {
var versions = new ArrayList<VersionInfo>();
versions.add(new HazVersion().getVersionInfo());
versions.add(new LibVersion().getVersionInfo());
return versions.toArray(new VersionInfo[0]);
}
/** /**
* Returns the version info from resources file. * Returns the version info from resources file.
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment