Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/providers/MappedAttributeDataProvider.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/providers/MappedAttributeDataProvider.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/providers/MappedAttributeDataProvider.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/providers/MappedAttributeDataProvider.java
index dd7b25fe0c2..9aae45e6e67 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/providers/MappedAttributeDataProvider.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/providers/MappedAttributeDataProvider.java
@@ -105,10 +105,9 @@ public class MappedAttributeDataProvider extends AbstractAttributeDataProvider i
String resourceName = String.format("%s.zip", getAttribute().getArtifact().getGuid());
try {
- Response response =
- endpoint.saveResource(new ByteArrayInputStream(compressed),
- BinaryContentUtils.ATTRIBUTE_RESOURCE_PROTOCOL, resourceId, resourceName, overwriteAllowed,
- compressOnSave);
+ Response response = endpoint.saveResource(new ByteArrayInputStream(compressed),
+ BinaryContentUtils.ATTRIBUTE_RESOURCE_PROTOCOL, resourceId, resourceName, overwriteAllowed,
+ compressOnSave);
String location = BinaryContentUtils.getAttributeLocation(response);
if (location != null) {
this.remoteUri = location;

Back to the top