-
-
Notifications
You must be signed in to change notification settings - Fork 302
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #663 from njbartlett/nb/issues/662
Fix #662: R6 @ProviderType annotation does not produce provider range.
- Loading branch information
Showing
4 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
biz.aQute.bndlib.tests/src/test/version/annotations/osgi/AnnotatedProviderInterface.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package test.version.annotations.osgi; | ||
|
||
import org.osgi.annotation.versioning.*; | ||
|
||
@ProviderType | ||
public interface AnnotatedProviderInterface { | ||
|
||
} |
7 changes: 7 additions & 0 deletions
7
....tests/src/test/versionpolicy/implemented/osgi/ImplementR5AnnotatedProviderInterface.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package test.versionpolicy.implemented.osgi; | ||
|
||
import test.version.annotations.osgi.*; | ||
|
||
public class ImplementR5AnnotatedProviderInterface implements AnnotatedProviderInterface { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters