mylyn-gitea/io.gitea.mylyn.core/src/io/gitea/mylyn/core/GiteaTaskMapper.java

17 lines
417 B
Java
Raw Normal View History

2021-03-07 11:56:15 +01:00
// Copyright (c) 2021, Fr.Terrot. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package io.gitea.mylyn.core;
import org.eclipse.mylyn.tasks.core.data.TaskData;
import org.eclipse.mylyn.tasks.core.data.TaskMapper;
public class GiteaTaskMapper extends TaskMapper {
public GiteaTaskMapper(TaskData taskData) {
super(taskData);
}
}