diff --git a/wdtk-examples/src/main/java/org/wikidata/wdtk/examples/benchmark/storage/datastructure/RankedBitVectorExample.java b/wdtk-examples/src/main/java/org/wikidata/wdtk/examples/benchmark/storage/datastructure/RankedBitVectorExample.java deleted file mode 100644 index 068a220c6..000000000 --- a/wdtk-examples/src/main/java/org/wikidata/wdtk/examples/benchmark/storage/datastructure/RankedBitVectorExample.java +++ /dev/null @@ -1,58 +0,0 @@ -package org.wikidata.wdtk.examples.benchmark.storage.datastructure; - -/* - * #%L - * Wikidata Toolkit Data Model - * %% - * Copyright (C) 2014 Wikidata Toolkit Developers - * %% - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * #L% - */ - -/** - * Example class for {@link RankedRankedBitVector}. - * - * @author Julian Mendez - * - */ -public class RankedBitVectorExample { - - /** - * Shows the examples - * - * @param args - * command line arguments (they are ignored) - */ - public static void main(String[] args) { - RankedBitVectorExample instance = new RankedBitVectorExample(); - System.out.println(instance.createExample()); - } - - /** - * Constructor of example class for ranked bit vector. - */ - public RankedBitVectorExample() { - } - - /** - * Returns a string created using a ranked bit vector. - * - * @return a string created using a ranked bit vector - */ - - public String createExample() { - throw new UnsupportedOperationException(); - } - -}