Remove old unused MovieList

This commit is contained in:
karl 2019-12-02 10:32:18 +01:00
parent 997a167c2e
commit e6c45b4dbf

View File

@ -1,12 +0,0 @@
package at.technikumwien.movies;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.List;
/** Wrapper for XML with multiple movies **/
@XmlRootElement(name = "movies")
public class MovieList {
@XmlElement(name="movie")
public List<Movie> movies;
}