Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,6 @@ public interface RootView extends VirtualView {
@ApiStatus.Internal
Set<IFContext> getInternalContexts();

/**
* Called when the view is about to be configured, the returned object will be the view's
* configuration.
* <p>
* As a reference, the data defined here was defined in the constructor in previous versions.
*
* @param config A mutable ViewConfigBuilder to configure this view.
*/
@ApiStatus.OverrideOnly
void onInit(ViewConfigBuilder config);

/**
* The configuration for this view.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ public final void setConfig(@NotNull ViewConfig config) {
return pipeline;
}

@Override
public void onInit(ViewConfigBuilder config) {}

@ApiStatus.Internal
public @NotNull ElementFactory getElementFactory() {
throw new UnsupportedOperationException("Element factory not provided");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -654,12 +654,9 @@ final <V> State<Pagination> buildPaginationState(
/**
* Called when the view is about to be configured, the returned object will be the view's
* configuration.
* <p>
* As a reference, the data defined here was defined in the constructor in previous versions.
*
* @param config A mutable ViewConfigBuilder to configure this view.
* @param config A ViewConfigBuilder instance to configure this view.
*/
@Override
@ApiStatus.OverrideOnly
public void onInit(ViewConfigBuilder config) {}

Expand Down