WorldGuard/src/test/java/com/sk89q/worldguard/region/TestAttribute.java

47 lines
1.3 KiB
Java

// $Id$
/*
* This file is a part of WorldGuard.
* Copyright (c) sk89q <http://www.sk89q.com>
* Copyright (c) the WorldGuard team and contributors
*
* This program is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* (at your option) any later version.
*
* This program 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.sk89q.worldguard.region;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import org.junit.Ignore;
import com.sk89q.worldguard.region.attribute.Attribute;
@Ignore
public class TestAttribute extends Attribute {
public TestAttribute(String name) {
super(name);
}
@Override
public void read(DataInputStream in, int len) throws IOException {
// do nothing
}
@Override
public void write(DataOutputStream out) throws IOException {
// do nothing
}
}