File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2410,7 +2410,7 @@ some around advice used in conjunction with a number of strongly typed parameter
2410
2410
Person getPerson(String personName, int age);
2411
2411
}
2412
2412
2413
- public class DefaultFooService implements FooService {
2413
+ public class DefaultPersonService implements PersonService {
2414
2414
2415
2415
public Person getPerson(String name, int age) {
2416
2416
return new Person(name, age);
@@ -2427,7 +2427,7 @@ some around advice used in conjunction with a number of strongly typed parameter
2427
2427
fun getPerson(personName: String, age: Int): Person
2428
2428
}
2429
2429
2430
- class DefaultFooService : FooService {
2430
+ class DefaultPersonService : PersonService {
2431
2431
2432
2432
fun getPerson(name: String, age: Int): Person {
2433
2433
return Person(name, age)
You can’t perform that action at this time.
0 commit comments