From 681bf88d96b7a42a609423ecdd1df8d004be821d Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Thu, 24 Oct 2013 21:57:17 +0200 Subject: [PATCH] [Minor] fixed compile error due to wrong typing --- src/main/java/li/strolch/model/timevalue/ITimeVariable.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/li/strolch/model/timevalue/ITimeVariable.java b/src/main/java/li/strolch/model/timevalue/ITimeVariable.java index 682a4e773..f1bc79261 100644 --- a/src/main/java/li/strolch/model/timevalue/ITimeVariable.java +++ b/src/main/java/li/strolch/model/timevalue/ITimeVariable.java @@ -12,7 +12,8 @@ import java.util.SortedSet; * @param * the backing value of the timed value object */ -public interface ITimeVariable> { +@SuppressWarnings("rawtypes") +public interface ITimeVariable { /** * set the value at a point in time to a given time value object