Skip to content

Commit 13b0d6c

Browse files
committed
Fix javadocs
1 parent 64d39dd commit 13b0d6c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/tinkerpop/frames/FramedGraph.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public FramedGraph(final T baseGraph) {
8383
* @param <F>
8484
* the default type of the annotated interface
8585
* @return a proxy objects backed by a vertex and interpreted from the
86-
* perspective of the annotate interface
86+
* perspective of the annotate interface or null if the vertex parameter was null
8787
*/
8888
public <F> F frame(final Vertex vertex, final Class<F> kind) {
8989
if(vertex == null) {
@@ -114,8 +114,8 @@ public <F> F frame(final Vertex vertex, final Class<F> kind) {
114114
* the default annotated interface to frame the edges as
115115
* @param <F>
116116
* the default type of the annotated interface
117-
* @return an iterable of proxy objects backed by an edge and interpreted
118-
* from the perspective of the annotate interface
117+
* @return a proxy objects backed by an edge and interpreted from the
118+
* perspective of the annotate interface or null if the edge paramenter was null
119119
*/
120120
public <F> F frame(final Edge edge, final Direction direction,
121121
final Class<F> kind) {

0 commit comments

Comments
 (0)