Skip to content

Commit

Permalink
Update javadoc.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 676138205
  • Loading branch information
Jesse-Good authored and copybara-github committed Sep 18, 2024
1 parent d1e9700 commit 05680a5
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions java/src/com/google/template/soy/data/SoyValueConverter.java
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,10 @@ public SoyEasyList newEasyListFromList(SoyList list) {
}

/**
* Creates a SoyList from a Java Iterable.
* Creates a SoyList, SoySet, or SoyIterable from a Java Iterable, based on the actual type of
* `items`.
*
* <p>Values are converted into Soy types lazily and only once.
*
* @param items The collection of Java values
* @return A new SoyList initialized from the given Java Collection.
*/
private SoyIterable newIterableFromIterable(Iterable<?> items) {
return IterableImpl.forJavaIterable(items, this::convert);
Expand Down

0 comments on commit 05680a5

Please sign in to comment.