Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen committed Jun 11, 2024
1 parent a4912dd commit 46dccd8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,27 +231,27 @@ static String foo() {

public static class ConfigA {

private ExampleService noQualifier;
ExampleService noQualifier;

@Qualifier("test")
private ExampleService directQualifier;
ExampleService directQualifier;

@Qualifier("different")
private ExampleService differentDirectQualifier;
ExampleService differentDirectQualifier;

@CustomQualifier
private ExampleService customQualifier;
ExampleService customQualifier;

}

public static class ConfigB {

private ExampleService noQualifier;
ExampleService noQualifier;

private ExampleService example;
ExampleService example;

@Qualifier("test")
private ExampleService directQualifier;
ExampleService directQualifier;

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ static class Case4 {
@TestBean
private String description;

private static String description() {
static String description() {
return "overridden";
}
}
Expand All @@ -99,7 +99,7 @@ static class Case5 {
@TestBean(name = "descriptionBean")
private String description;

private static String description() {
static String description() {
return "overridden";
}
}
Expand Down

0 comments on commit 46dccd8

Please sign in to comment.