Skip to content

Commit 4ec8a02

Browse files
committed
Merge pull request androidannotations#1022 from yDelouis/1016_getFragmentBuilderBundle
Expose bundle args of FragmentBuilder
2 parents cac4588 + e87ce67 commit 4ec8a02

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

  • AndroidAnnotations/androidannotations-api/src/main/java/org/androidannotations/api/builder

AndroidAnnotations/androidannotations-api/src/main/java/org/androidannotations/api/builder/FragmentBuilder.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,4 +170,8 @@ public I arg(String key, Bundle value) {
170170
args.putBundle(key, value);
171171
return (I) this;
172172
}
173+
174+
public Bundle args() {
175+
return args;
176+
}
173177
}

0 commit comments

Comments
 (0)