if(taskInfo == null)
return result;
for(Entry<String, String> entry : taskInfo.entrySet())
result.addTask(new Raketask(entry.getKey(), entry.getValue()));
return result;
}
catch(IOException e) {
// simply do not return any information - validation should have dealt with errors
// System.err.println("IOException while processing Rakefile: " + e.getMessage());