Skip to content

Commit

Permalink
Added tracking api to multi Application
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf committed Sep 3, 2024
1 parent f413c82 commit 2c06cf1
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,7 @@
import java.time.Duration;

public interface OptionsFactory {
public enum OptionsType { ADMIN, DEFAULT}

default Options.Builder getOptionsBuilder(Context ctx) {
return getOptionsBuilder(ctx, OptionsType.DEFAULT);
}
enum OptionsType { ADMIN, DEFAULT}

default Options.Builder getOptionsBuilder(Context ctx, OptionsType ot) {
String server = ot == OptionsType.ADMIN ? null : getServer(ctx);
Expand Down

0 comments on commit 2c06cf1

Please sign in to comment.