Skip to content

Commit

Permalink
Add some todo for output and doc.
Browse files Browse the repository at this point in the history
  • Loading branch information
agentgt committed Sep 10, 2024
1 parent 0e64995 commit a2148cf
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions core/src/main/java/io/jstach/rainbowgum/LogOutput.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ public interface LogOutput extends LogLifecycle, Flushable, LogComponent {
* @apiNote the provider may throw an {@link UncheckedIOException}.
*/
private static LogProvider<LogOutput> of(URI uri) {
/*
* TODO this should probably be public.
*/
return of(LogProviderRef.of(uri));
}

Expand Down Expand Up @@ -134,6 +137,10 @@ public interface ContentType {

/**
* Builtin content types.
*
* @apiNote additional "standard" content types maybe added in the future before
* 1.0 thus one should expect the number of enum symbols to change and is not safe
* to pattern match on without a default.
*/
@CaseChanging
public enum StandardContentType implements ContentType {
Expand Down

0 comments on commit a2148cf

Please sign in to comment.