diff options
author | Artur Signell <artur@vaadin.com> | 2012-03-20 12:09:59 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-03-21 15:27:56 +0200 |
commit | 77344f9608f853a246999e756394790104209281 (patch) | |
tree | bd3b85b12dc6d6483519b258f18ceb425feab4dd /src/com/vaadin/terminal/gwt/client/ComponentDetail.java | |
parent | 1d3d28469ad02ed84abb743fc3bd367408ea737b (diff) | |
download | vaadin-framework-77344f9608f853a246999e756394790104209281.tar.gz vaadin-framework-77344f9608f853a246999e756394790104209281.zip |
Removed unused code related to old offsetSize stored in ComponentDetail
Diffstat (limited to 'src/com/vaadin/terminal/gwt/client/ComponentDetail.java')
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/ComponentDetail.java | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ComponentDetail.java b/src/com/vaadin/terminal/gwt/client/ComponentDetail.java index c13775d355..686cb640a4 100644 --- a/src/com/vaadin/terminal/gwt/client/ComponentDetail.java +++ b/src/com/vaadin/terminal/gwt/client/ComponentDetail.java @@ -5,8 +5,6 @@ package com.vaadin.terminal.gwt.client; import java.util.HashMap; -import com.vaadin.terminal.gwt.client.RenderInformation.Size; - class ComponentDetail { private TooltipInfo tooltipInfo = new TooltipInfo(); @@ -42,25 +40,8 @@ class ComponentDetail { this.tooltipInfo = tooltipInfo; } - private Size offsetSize; private HashMap<Object, TooltipInfo> additionalTooltips; - /** - * - * @return the offsetSize - */ - Size getOffsetSize() { - return offsetSize; - } - - /** - * @param offsetSize - * the offsetSize to set - */ - void setOffsetSize(Size offsetSize) { - this.offsetSize = offsetSize; - } - public void putAdditionalTooltip(Object key, TooltipInfo tooltip) { if (tooltip == null && additionalTooltips != null) { additionalTooltips.remove(key); |