diff options
author | S.W <wimmesberger@gmail.com> | 2019-06-27 09:58:37 +0200 |
---|---|---|
committer | Zhe Sun <31067185+ZheSun88@users.noreply.github.com> | 2019-06-27 10:58:36 +0300 |
commit | 583920f327c338a020d4e09e420548f44127cb7f (patch) | |
tree | 4319908dd2887bd780fb89a64d79c7690721c252 /server | |
parent | 4c4d0375c1efdf5d943ee2112bdd2160e0045af7 (diff) | |
download | vaadin-framework-583920f327c338a020d4e09e420548f44127cb7f.tar.gz vaadin-framework-583920f327c338a020d4e09e420548f44127cb7f.zip |
OSGi: Removed static VaadinResourceService access in liferay-integration, osgi-integration (#11335)
* Made VaadinResourceService a OSGi component, removed static access of OsgiVaadinResources
Diffstat (limited to 'server')
-rw-r--r-- | server/src/main/java/com/vaadin/server/osgi/BootstrapContribution.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/main/java/com/vaadin/server/osgi/BootstrapContribution.java b/server/src/main/java/com/vaadin/server/osgi/BootstrapContribution.java index 17e2e711e6..62b6d55967 100644 --- a/server/src/main/java/com/vaadin/server/osgi/BootstrapContribution.java +++ b/server/src/main/java/com/vaadin/server/osgi/BootstrapContribution.java @@ -39,8 +39,8 @@ public class BootstrapContribution implements OsgiVaadinContributor { public List<OsgiVaadinResource> getContributions() { final List<OsgiVaadinResource> contributions = new ArrayList<>( RESOURCES.length); - for (final String theme : RESOURCES) { - contributions.add(OsgiVaadinResource.create(theme)); + for (final String resource : RESOURCES) { + contributions.add(OsgiVaadinResource.create(resource)); } return contributions; } |