Skip to content

Commit

Permalink
Import bricht wegen IFCTEXT($) ab http://bitnami/issues/5523
Browse files Browse the repository at this point in the history
  • Loading branch information
WeltWeitBau committed Jan 14, 2022
1 parent 9c5e87c commit 0ff32a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ private static Object getDefaultValue(EStructuralFeature eStructuralFeature, Cla
* @throws DeserializeException
*/
public static String readString(String value, long lineNumber) throws DeserializeException {
if(value.equals("$")) {
return "";
}

String result = value.substring(1, value.length() - 1);
// Replace all '' with '
while (result.contains("''")) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,7 @@ public GetPluginBundle(DatabaseSession databaseSession, AccessMethod accessMetho

@Override
public SPluginBundle execute() throws UserException, BimserverLockConflictException, BimserverDatabaseException, ServerException {
if (bimServer.getVersionChecker() != null && bimServer.getVersionChecker().getLocalVersion() != null) {
bimserverVersion = new DefaultArtifactVersion(bimServer.getVersionChecker().getLocalVersion().getFullString());
} else {
LOGGER.info("No BIMserver version");
}
bimserverVersion = new DefaultArtifactVersion("1.5.182");

MavenPluginLocation pluginLocation = bimServer.getMavenPluginRepository().getPluginLocation(repository, groupId, artifactId);

Expand Down

0 comments on commit 0ff32a2

Please sign in to comment.