Skip to content

Commit 330c73d

Browse files
committed
update Flapi descriptor build from the latest 0.6.1 patch
1 parent b30a09d commit 330c73d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

flapi-descriptor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>unquietcode.tools.flapi</groupId>
1010
<artifactId>build-project</artifactId>
11-
<version>0.5.2</version>
11+
<version>0.6.1</version>
1212
</parent>
1313

1414
<artifactId>flapi-builder</artifactId>

src/main/java/unquietcode/tools/flapi/Flapi.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class Flapi {
4747
* @param listeners any execution listeners to be included
4848
* @return a new descriptor builder
4949
*/
50-
public static DescriptorBuilder.Start builder(ExecutionListener...listeners) {
50+
public static DescriptorBuilder.Start<Void> builder(ExecutionListener...listeners) {
5151
return DescriptorGenerator.create(new DescriptorHelperImpl(), listeners);
5252
}
5353

@@ -59,7 +59,7 @@ public static DescriptorBuilder.Start builder(ExecutionListener...listeners) {
5959
*
6060
* @see unquietcode.tools.flapi.annotations.AnnotationIntrospector
6161
*/
62-
public static DescriptorConfiguratorBuilder.Start create(Class<?> topBlock) {
62+
public static DescriptorConfiguratorBuilder.Start<Void> create(Class<?> topBlock) {
6363
checkNotNull(topBlock, "a starting block is required");
6464

6565
AnnotationIntrospector introspector = new AnnotationIntrospector();

0 commit comments

Comments
 (0)