Java tutorial
/* Changes.java: Shorthand for Map<Class, ImmutablePair<List<String>, List<String>> for storing changes to files Copyright 2015 Bob W. Hogg. All Rights Reserved. This file is part of Git-VCR. Git-VCR is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Git-VCR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Git-VCR. If not, see <http://www.gnu.org/licenses/>. */ package com.github.rwhogg.git_vcr.review; import java.util.*; import org.apache.commons.lang3.tuple.*; /** * Changes is just shorthand for Map<Class, ImmutablePair<List<String>, List<String>>> */ @SuppressWarnings({ "serial", "rawtypes" }) public final class Changes extends HashMap<Class, ImmutablePair<List<String>, List<String>>> { }