Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Add some doc to StringBuilderHolder.
Browse files Browse the repository at this point in the history
  • Loading branch information
calvertdw committed Feb 20, 2018
1 parent 3266635 commit 36d94b3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/us/ihmc/idl/IDLSequence.java
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,10 @@ public static class StringBuilderHolder extends PreallocatedList<StringBuilder>
{
private final int type;

/**
* @param maxSize Preallocate elements
* @param typeCode Can be "type_d" (idl type string) or "type_15" (idl type wstring)
*/
public StringBuilderHolder(int maxSize, String typeCode)
{
super(StringBuilder.class, StringBuilder::new, maxSize);
Expand Down

0 comments on commit 36d94b3

Please sign in to comment.