Skip to content

Commit

Permalink
Fixed invalid imports
Browse files Browse the repository at this point in the history
  • Loading branch information
marcingrzejszczak committed Sep 25, 2023
1 parent 81a5d90 commit c03a778
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
*/
package com.vaadin.flow.di;

import java.util.ServiceLoader;
import java.util.concurrent.atomic.AtomicReference;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;

import com.vaadin.flow.component.Component;
import com.vaadin.flow.function.DeploymentConfiguration;
import com.vaadin.flow.i18n.I18NProvider;
Expand All @@ -24,11 +29,6 @@
import com.vaadin.flow.server.VaadinService;
import com.vaadin.flow.server.VaadinServiceInitListener;

import java.util.ServiceLoader;
import java.util.concurrent.atomic.AtomicReference;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;

/**
* Default instantiator that is used if no other instantiator has been
* registered. This implementation uses vanilla Java mechanisms such as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
*/
package com.vaadin.flow.di;

import java.io.Serializable;
import java.util.ServiceLoader;
import java.util.stream.Stream;

import com.vaadin.flow.component.Component;
import com.vaadin.flow.component.HasElement;
import com.vaadin.flow.component.UI;
Expand All @@ -27,10 +31,6 @@
import com.vaadin.flow.server.communication.IndexHtmlRequestListener;
import com.vaadin.flow.server.communication.UidlWriter;

import java.io.Serializable;
import java.util.ServiceLoader;
import java.util.stream.Stream;

/**
* Delegate for discovering, creating and managing instances of various types
* used by Flow. Dependency injection frameworks can provide an implementation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@
*/
package com.vaadin.flow.spring;

import com.vaadin.flow.server.Constants;
import com.vaadin.flow.server.VaadinServlet;
import com.vaadin.flow.spring.springnative.VaadinBeanFactoryInitializationAotProcessor;
import jakarta.servlet.MultipartConfigElement;
import java.util.HashMap;
import java.util.Map;

import org.atmosphere.cpr.ApplicationConfig;
import org.springframework.beans.factory.ObjectProvider;
import org.springframework.beans.factory.annotation.Autowired;
Expand All @@ -35,8 +34,11 @@
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;

import java.util.HashMap;
import java.util.Map;
import com.vaadin.flow.server.Constants;
import com.vaadin.flow.server.VaadinServlet;
import com.vaadin.flow.spring.springnative.VaadinBeanFactoryInitializationAotProcessor;

import jakarta.servlet.MultipartConfigElement;

/**
* Spring boot auto-configuration class for Flow.
Expand Down

0 comments on commit c03a778

Please sign in to comment.