diff options
author | 2023-08-10 16:58:48 +0100 | |
---|---|---|
committer | 2023-09-22 16:01:00 +0100 | |
commit | a3a032d5b902c3e125dccd2bc2b41f22861decc1 (patch) | |
tree | 481b0faa916f39da096fe5c935c630b1598f0f7d /core/src/main/java/org | |
parent | 097618956f681eee12a23d7d9dc4f4f22f5347cc (diff) |
Java 17 Upgrade
Updated dependencies to latest versions
Made Java 17 changes
Moved apex dependencies versions to main apex pom
Issue-ID: POLICY-4675
Change-Id: Ia5cd5670a1f024f5402cbd7371162ce3313930ef
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'core/src/main/java/org')
-rw-r--r-- | core/src/main/java/org/onap/policy/apex/core/infrastructure/threading/ApplicationThreadFactory.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/src/main/java/org/onap/policy/apex/core/infrastructure/threading/ApplicationThreadFactory.java b/core/src/main/java/org/onap/policy/apex/core/infrastructure/threading/ApplicationThreadFactory.java index 9345abaaa..cea505854 100644 --- a/core/src/main/java/org/onap/policy/apex/core/infrastructure/threading/ApplicationThreadFactory.java +++ b/core/src/main/java/org/onap/policy/apex/core/infrastructure/threading/ApplicationThreadFactory.java @@ -3,6 +3,7 @@ * Copyright (C) 2016-2018 Ericsson. All rights reserved. * Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved. * Modifications Copyright (C) 2021 Bell Canada. All rights reserved. + * Modifications Copyright (C) 2023 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -71,7 +72,11 @@ public class ApplicationThreadFactory implements ThreadFactory { * @param stackSize the stack size * @param threadPriority the thread priority */ + @SuppressWarnings({ + "deprecation", "removal" + }) public ApplicationThreadFactory(final String nameLocal, final long stackSize, final int threadPriority) { + @SuppressWarnings("removal") final var s = System.getSecurityManager(); group = (s != null) ? s.getThreadGroup() : Thread.currentThread().getThreadGroup(); name = APPLICATION_NAME + nameLocal + HYPHEN + NEXT_POOL_NUMBER.getAndIncrement(); |