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 /themes | |
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 'themes')
-rw-r--r-- | themes/src/main/java/com/vaadin/osgi/themes/ValoThemeContribution.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/src/main/java/com/vaadin/osgi/themes/ValoThemeContribution.java b/themes/src/main/java/com/vaadin/osgi/themes/ValoThemeContribution.java index cd1b7a4a8e..a31b6cf404 100644 --- a/themes/src/main/java/com/vaadin/osgi/themes/ValoThemeContribution.java +++ b/themes/src/main/java/com/vaadin/osgi/themes/ValoThemeContribution.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) @@ -30,7 +30,7 @@ public class ValoThemeContribution { @Activate void startup() throws Exception { - VaadinResourceService service = OSGiVaadinResources.getService(); + VaadinResourceService service = OsgiVaadinResources.getService(); service.publishTheme("valo", httpService); } |