Skip to content

Commit

Permalink
Use a more documentation friendly format for the expected time string
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Sep 2, 2024
1 parent 5259175 commit 32a63cb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class MediaPartial {
*
* @param begin
* The begin as formatted time in form of
* ([0-1]\\d|2[0-3]):[0-5]\\d:[0-5]\\d\\.\\d{3}
* HH:MM:SS.mmm (hour, minutes, seconds, milliseconds)
*/
public MediaPartial(String begin) {
this.begin = begin;
Expand All @@ -40,10 +40,10 @@ public MediaPartial(String begin) {
*
* @param begin
* The begin as formatted time in form of
* ([0-1]\\d|2[0-3]):[0-5]\\d:[0-5]\\d\\.\\d{3}
* HH:MM:SS.mmm (hour, minutes, seconds, milliseconds)
* @param extent
* The extent as formatted time in form of
* ([0-1]\\d|2[0-3]):[0-5]\\d:[0-5]\\d\\.\\d{3}
* HH:MM:SS.mmm (hour, minutes, seconds, milliseconds)
*/
public MediaPartial(String begin, String extent) {
this(begin);
Expand Down

0 comments on commit 32a63cb

Please sign in to comment.