mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Updated method description to take into account the new void return type
This commit is contained in:
parent
cd29d4637d
commit
f13a2e7e0f
1 changed files with 7 additions and 5 deletions
|
|
@ -100,10 +100,11 @@ public final class UrlTemplate {
|
||||||
/**
|
/**
|
||||||
* Parses {@code template}, placing the decomposed components into the provided lists.
|
* Parses {@code template}, placing the decomposed components into the provided lists.
|
||||||
*
|
*
|
||||||
* <p>If the return value is N, {@code urlPieces} will contain (N+1) strings that must be
|
* <p>If the number of identifiers in the {@code template} is N, {@code urlPieces} will contain
|
||||||
* interleaved with N arguments in order to construct a url. The N identifiers that correspond to
|
* (N+1) strings that must be interleaved with those N arguments in order to construct a url. The
|
||||||
* the required arguments, together with the tags that define their required formatting, are
|
* N identifiers that correspond to the required arguments, together with the tags that define
|
||||||
* returned in {@code identifiers} and {@code identifierFormatTags} respectively.
|
* their required formatting, are returned in {@code identifiers} and {@code identifierFormatTags}
|
||||||
|
* respectively.
|
||||||
*
|
*
|
||||||
* @param template The template to parse.
|
* @param template The template to parse.
|
||||||
* @param urlPieces A holder for pieces of url parsed from the template.
|
* @param urlPieces A holder for pieces of url parsed from the template.
|
||||||
|
|
@ -122,7 +123,8 @@ public final class UrlTemplate {
|
||||||
int dollarIndex = template.indexOf("$", templateIndex);
|
int dollarIndex = template.indexOf("$", templateIndex);
|
||||||
if (dollarIndex == -1) {
|
if (dollarIndex == -1) {
|
||||||
urlPieces.set(
|
urlPieces.set(
|
||||||
identifiers.size(), urlPieces.get(identifiers.size()) + template.substring(templateIndex));
|
identifiers.size(),
|
||||||
|
urlPieces.get(identifiers.size()) + template.substring(templateIndex));
|
||||||
templateIndex = template.length();
|
templateIndex = template.length();
|
||||||
} else if (dollarIndex != templateIndex) {
|
} else if (dollarIndex != templateIndex) {
|
||||||
urlPieces.set(
|
urlPieces.set(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue