diff options
author | donald.g.dunne | 2016-08-04 15:23:09 +0000 |
---|---|---|
committer | Ryan D. Brooks | 2016-08-31 16:18:05 +0000 |
commit | 1a657812af9d72fe655b832212b93c55bbc05212 (patch) | |
tree | 53f0f9e25c49e23f959dc8f8e6ba6f3cc1ce9e96 | |
parent | fdc9345cefb6d289fe6a162169deac08f6ddf2e8 (diff) | |
download | org.eclipse.osee-1a657812af9d72fe655b832212b93c55bbc05212.tar.gz org.eclipse.osee-1a657812af9d72fe655b832212b93c55bbc05212.tar.xz org.eclipse.osee-1a657812af9d72fe655b832212b93c55bbc05212.zip |
refinement: Improve AtsArtifactChecks error string
Change-Id: Ib9063648b93d3402f070e5fc5e7e5f0b14eab5bf
-rw-r--r-- | plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/artifact/AtsArtifactChecks.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/artifact/AtsArtifactChecks.java b/plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/artifact/AtsArtifactChecks.java index 3169fd79595..f48f3980aab 100644 --- a/plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/artifact/AtsArtifactChecks.java +++ b/plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/artifact/AtsArtifactChecks.java @@ -138,7 +138,7 @@ public class AtsArtifactChecks extends ArtifactCheck { IAtsTeamWorkflow teamWf = AtsClientService.get().getWorkItemFactory().getTeamWf(art); if (!allArtifacts.contains(teamWf.getParentAction())) { return String.format("Can't delete workflow %s without deleting action %s, use ATS World Editor", - teamWf.toStringWithId(), teamWf.getParentAction()); + teamWf.toStringWithId(), teamWf.getParentAction().toStringWithId()); } } return null; |