Skip to content

Commit

Permalink
Fix build failure from invalid javadoc syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
object-Object committed Mar 18, 2024
1 parent 2d8d1ff commit cda2e4a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface ExtractMedia extends CastingEnvironmentComponent {
/**
* Receives the cost that is being extracted, should return the
* remaining cost after deducting whatever cost source this component
* is responsible for (should be >= 0)
* is responsible for (should be >= 0)
*/
long onExtractMedia(long cost);

Expand All @@ -30,7 +30,7 @@ interface Pre extends ExtractMedia {}

/**
* ExtractMedia component that extracts media AFTER the call to {@link CastingEnvironment#extractMediaEnvironment(long)}
* if the input is <= 0 you should also probably return 0 (since media cost was already paid off)
* if the input is &lt;= 0 you should also probably return 0 (since media cost was already paid off)
*/
interface Post extends ExtractMedia {}
}
Expand Down

0 comments on commit cda2e4a

Please sign in to comment.