Skip to content

Commit

Permalink
Merge branch 'master' into docker-push-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewhorridge committed Aug 6, 2024
2 parents 62e7625 + 1c49e28 commit 9fa6157
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>edu.stanford.protege</groupId>
<artifactId>webprotege-gwt-ui</artifactId>
<version>6.0.1</version>
<version>6.0.4</version>
<packaging>pom</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion webprotege-gwt-ui-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>edu.stanford.protege</groupId>
<artifactId>webprotege-gwt-ui</artifactId>
<version>6.0.1</version>
<version>6.0.4</version>
</parent>

<artifactId>webprotege-gwt-ui-client</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion webprotege-gwt-ui-server-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>webprotege-gwt-ui</artifactId>
<groupId>edu.stanford.protege</groupId>
<version>6.0.1</version>
<version>6.0.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion webprotege-gwt-ui-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>edu.stanford.protege</groupId>
<artifactId>webprotege-gwt-ui</artifactId>
<version>6.0.1</version>
<version>6.0.4</version>
</parent>

<artifactId>webprotege-gwt-ui-server</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ private CompletableFuture<Void> createCompletableFutureForBatchAction(ImmutableL
var innerExecutionResult = ActionExecutionResult.get(innerResult);
resultList.set(index, innerExecutionResult);
} catch (ActionExecutionException e) {
resultList.add(ActionExecutionResult.get(e));
resultList.set(index, ActionExecutionResult.get(e));
} catch (PermissionDeniedException e) {
resultList.add(ActionExecutionResult.get(e));
resultList.set(index, ActionExecutionResult.get(e));
}
});
futures.add(future);
Expand Down
2 changes: 1 addition & 1 deletion webprotege-gwt-ui-shared-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>webprotege-gwt-ui</artifactId>
<groupId>edu.stanford.protege</groupId>
<version>6.0.1</version>
<version>6.0.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion webprotege-gwt-ui-shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>edu.stanford.protege</groupId>
<artifactId>webprotege-gwt-ui</artifactId>
<version>6.0.1</version>
<version>6.0.4</version>
</parent>

<artifactId>webprotege-gwt-ui-shared</artifactId>
Expand Down

0 comments on commit 9fa6157

Please sign in to comment.