summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/AbstractComponent.java
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/com/vaadin/ui/AbstractComponent.java')
-rw-r--r--server/src/com/vaadin/ui/AbstractComponent.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/server/src/com/vaadin/ui/AbstractComponent.java b/server/src/com/vaadin/ui/AbstractComponent.java
index 09b471cc36..f92024d3b3 100644
--- a/server/src/com/vaadin/ui/AbstractComponent.java
+++ b/server/src/com/vaadin/ui/AbstractComponent.java
@@ -263,9 +263,9 @@ public abstract class AbstractComponent extends AbstractClientConnector
if (parent != null) {
return parent.getLocale();
}
- final VaadinSession app = getSession();
- if (app != null) {
- return app.getLocale();
+ final VaadinSession session = getSession();
+ if (session != null) {
+ return session.getLocale();
}
return null;
}
@@ -620,8 +620,8 @@ public abstract class AbstractComponent extends AbstractClientConnector
*/
protected void focus() {
if (this instanceof Focusable) {
- final VaadinSession app = getSession();
- if (app != null) {
+ final VaadinSession session = getSession();
+ if (session != null) {
getUI().setFocusedComponent((Focusable) this);
delayedFocus = false;
} else {