Remove lingering usage of javax.annotation.PostConstruct

Use jakarta.annotation instead.
This commit is contained in:
Soby Chacko
2023-02-27 16:03:52 -05:00
parent 986b54f5d0
commit 47c8adcf99
5 changed files with 10 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2022 the original author or authors.
* Copyright 2015-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -18,8 +18,7 @@ package org.springframework.cloud.stream.config;
import java.util.List;
import javax.annotation.PostConstruct;
import jakarta.annotation.PostConstruct;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;