Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.account.rest.client/src/org/eclipse/osee/account/rest/client/internal/AccountClientImpl.java')
-rw-r--r--plugins/org.eclipse.osee.account.rest.client/src/org/eclipse/osee/account/rest/client/internal/AccountClientImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.account.rest.client/src/org/eclipse/osee/account/rest/client/internal/AccountClientImpl.java b/plugins/org.eclipse.osee.account.rest.client/src/org/eclipse/osee/account/rest/client/internal/AccountClientImpl.java
index e583e8191f8..5f9226ec1b5 100644
--- a/plugins/org.eclipse.osee.account.rest.client/src/org/eclipse/osee/account/rest/client/internal/AccountClientImpl.java
+++ b/plugins/org.eclipse.osee.account.rest.client/src/org/eclipse/osee/account/rest/client/internal/AccountClientImpl.java
@@ -248,7 +248,7 @@ public class AccountClientImpl implements AccountClient {
ResultSet<UnsubscribeInfo> toReturn = ResultSets.emptyResultSet();
ResultSet<SubscriptionData> results = getSubscriptionsForAccount(userUuid);
if (!results.isEmpty()) {
- List<UnsubscribeInfo> infos = new ArrayList<UnsubscribeInfo>();
+ List<UnsubscribeInfo> infos = new ArrayList<>();
UriBuilder builder = UriBuilder.fromUri(baseUri).path("unsubscribe").path("ui").path("{subscription-uuid}");
for (SubscriptionData subscription : results) {

Back to the top