diff options
author | Henri Sara <henri.sara@gmail.com> | 2017-05-15 22:34:43 +0300 |
---|---|---|
committer | Pekka Hyvönen <pekka@vaadin.com> | 2017-05-15 22:34:43 +0300 |
commit | e788fa906b968a298414e60cbb15cc7d6389b8a1 (patch) | |
tree | 2ee323f033d9ea05768e56795462e9617597809e /compatibility-themes/src | |
parent | 91e0eb1ce19aec5f634261534674960b7b7af399 (diff) | |
download | vaadin-framework-e788fa906b968a298414e60cbb15cc7d6389b8a1.tar.gz vaadin-framework-e788fa906b968a298414e60cbb15cc7d6389b8a1.zip |
Rename OSGi classes for Java naming conventions (#9320)
- Rename OSGi to Osgi in class names.
- Rename VaadinOSGiPortlet to OSGiVaadinPortlet for consistency with
Spring, CDI etc. add-ons
- Add missing javadoc
Diffstat (limited to 'compatibility-themes/src')
-rw-r--r-- | compatibility-themes/src/main/java/com/vaadin/osgi/compatibility/themes/LegacyThemeContributions.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compatibility-themes/src/main/java/com/vaadin/osgi/compatibility/themes/LegacyThemeContributions.java b/compatibility-themes/src/main/java/com/vaadin/osgi/compatibility/themes/LegacyThemeContributions.java index dd1b933bb9..2214e40b5e 100644 --- a/compatibility-themes/src/main/java/com/vaadin/osgi/compatibility/themes/LegacyThemeContributions.java +++ b/compatibility-themes/src/main/java/com/vaadin/osgi/compatibility/themes/LegacyThemeContributions.java @@ -20,7 +20,7 @@ import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; import org.osgi.service.http.HttpService; -import com.vaadin.osgi.resources.OSGiVaadinResources; +import com.vaadin.osgi.resources.OsgiVaadinResources; import com.vaadin.osgi.resources.VaadinResourceService; @Component(immediate = true) @@ -32,7 +32,7 @@ public class LegacyThemeContributions { @Activate void startup() throws Exception { - VaadinResourceService service = OSGiVaadinResources.getService(); + VaadinResourceService service = OsgiVaadinResources.getService(); for (String themeName : LEGACY_THEMES) { service.publishTheme(themeName, httpService); } |