Skip to content

Commit

Permalink
removing unnecessary imports (and thus fixing the build ;-)
Browse files Browse the repository at this point in the history
  • Loading branch information
keznikl authored and andranikm committed Feb 7, 2014
1 parent 8bc6e6b commit 9764204
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,9 @@
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.osgi.service.application.ApplicationException;

import cz.cuni.mff.d3s.deeco.logging.Log;
import cz.cuni.mff.d3s.deeco.model.runtime.api.KnowledgePath;
import cz.cuni.mff.d3s.deeco.model.runtime.meta.RuntimeMetadataFactory;
import cz.cuni.mff.d3s.deeco.scheduler.CurrentTimeProvider;

/**
*
* This container allows to deal with both local and replica knowledge managers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* @author Jaroslav Keznikl <keznikl@d3s.mff.cuni.cz>
*
*/
@SuppressWarnings("serial")
public class ValueSet implements Serializable {


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ public boolean isComplete() {
return isInitialized && (remainingBytes == 0);
}

@SuppressWarnings("unchecked")
public List<? extends KnowledgeData> getKnowledgeDataList() {
try {
if (isComplete()) {
Expand Down

0 comments on commit 9764204

Please sign in to comment.