diff options
author | Benjamin Jones <bjones@galois.com> | 2012-11-12 17:36:00 -0800 |
---|---|---|
committer | Benjamin Jones <bjones@galois.com> | 2012-11-12 17:36:00 -0800 |
commit | 8d904d263446fa6dfb36b6dfc16f1ebba3fc729b (patch) | |
tree | 9c2f3eae0b2d7390c0b842ff18857564bc3306ec /rsTester/src/main/java/com/galois/fiveui | |
parent | 5d4e0e6e486982d3bcd9ee600c286714296d3816 (diff) |
removed unused source files
Diffstat (limited to 'rsTester/src/main/java/com/galois/fiveui')
-rw-r--r-- | rsTester/src/main/java/com/galois/fiveui/URITest.java | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/rsTester/src/main/java/com/galois/fiveui/URITest.java b/rsTester/src/main/java/com/galois/fiveui/URITest.java deleted file mode 100644 index 5a0f920..0000000 --- a/rsTester/src/main/java/com/galois/fiveui/URITest.java +++ /dev/null @@ -1,55 +0,0 @@ -/** - * Module : URITest.java Copyright : (c) 2011-2012, Galois, Inc. - * - * Maintainer : Stability : Provisional Portability: Portable - * - * 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. - */ -package com.galois.fiveui; - -import java.net.URI; -import java.util.List; - -import com.google.common.collect.ImmutableList; - -public class URITest { - - private URI uri; - private int id; - private List<ResType> oracle; - - /** - * Deserialization constructor. - */ - URITest() {} - -// public URITest(URI uri, RuleSet ruleSet, ResType oracle) { -// assert(1 == ruleSet.getRules().size()); -// -// this._uri = uri; -// this._ruleSet = ruleSet; -// this._oracle = oracle; -// } - - public URI getUri() { - return uri; - } - - public int getId() { - return id; - } - - public ImmutableList<ResType> getOracle() { - return ImmutableList.copyOf(oracle); - } -} |