diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 2d68897e3..cbf5d027a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,7 +1,7 @@ name: Bug report description: Create a report to help us improve title: "[BUG] " -labels: [bug] +labels: [ bug ] body: - type: textarea id: description diff --git a/.github/ISSUE_TEMPLATE/enhancement_request.yml b/.github/ISSUE_TEMPLATE/enhancement_request.yml index 7a2821978..7741654ab 100644 --- a/.github/ISSUE_TEMPLATE/enhancement_request.yml +++ b/.github/ISSUE_TEMPLATE/enhancement_request.yml @@ -1,7 +1,7 @@ name: Enhancement request description: Improve an already-existing feature title: "[ENHANCEMENT] " -labels: [enhancement] +labels: [ enhancement ] body: - type: textarea id: current_behavior diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 03b13c8d4..72539a5b8 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,7 +1,11 @@ name: Feature request description: Suggest an idea for this project title: "[FEATURE] " -labels: [new feature] + <<<<<<< HEAD +labels: [ new feature ] + ======= +labels: [ enhancement, new feature ] + >>>>>>> b28ba6c38166142ecd457ffee2797fffc89a51b4 body: - type: textarea id: description diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 5ab8b76d4..fae977719 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -3,7 +3,7 @@ -Closes #(issue) +Closes #(issue) ## Type of change diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 53db01905..1d3fa9fac 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -5,9 +5,7 @@ name: Java CI with Gradle on: push: - branches: [ master ] pull_request: - branches: [ master ] jobs: build: @@ -15,12 +13,26 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 - with: - java-version: 1.8 - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Build with Gradle - run: ./gradlew build -x test + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build -x test + + checkstyle: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: gradlew executable + run: chmod +x gradlew + - name: Run checkstyle + run: ./gradlew check diff --git a/.gitignore b/.gitignore index e57deabfb..a09e801d8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,134 @@ -.gradle/* +### Intellij+all ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# Development builds +out/ +build/ +bin/ + +# Native files generated on build, not needed in git +native/windows/lib +native/windows/bin/* + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### Intellij+all Patch ### +# Ignore everything but code style settings and run configurations +# that are supposed to be shared within teams. + .idea/* -out/* -build/* -.DS_Store \ No newline at end of file + +!.idea/codeStyles +!.idea/runConfigurations + +### Java ### +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +replay_pid* + +### Gradle ### +.gradle +**/build/ +!src/**/build/ + +# Ignore Gradle GUI config +gradle-app.setting + +# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) +!gradle-wrapper.jar + +# Avoid ignore Gradle wrappper properties +!gradle-wrapper.properties + +# Cache of project +.gradletasknamecache + +# Eclipse Gradle plugin generated files +# Eclipse Core +.project +# JDT-specific (Eclipse Java Development Tools) +.classpath + +# End of https://www.toptal.com/developers/gitignore/api/intellij+all,gradle,java + +**/.DS_Store +gradle/wrapper/gradle-wrapper.properties diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 000000000..e96bfc2a7 --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,13 @@ + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 000000000..79ee123c2 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 38b4a971d..000000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1ddfb..000000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 1944ca58f..000000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,12 +0,0 @@ -# Contributing -Thank you for investing your time and contributing to Legup! In this guide, you will get an overview of the general principles you should follow when contributing to Legup. Legup is open source software, so anyone and everyone is welcome to contribute to this project. Some of the types of contributions accepted include, but aren't limited to, the following: -- Developing and maintaining the code -- Documentation -- Testing - -## Guides -Please refer to the following guides when contributing: -- Legup Development Process - - [Developer Setup Guide for First-Time Contributors](https://github.com/Bram-Hub/Legup/wiki/Programming-Setup-Guide) - - [Programming Standards](https://github.com/Bram-Hub/Legup/wiki/Programming-Principles) - - [Suggestions for Getting Started](https://github.com/Bram-Hub/Legup/wiki/Some-Pointers-for-Getting-Started) diff --git a/README.md b/README.md index cb22c0ead..c59342248 100644 --- a/README.md +++ b/README.md @@ -75,3 +75,6 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ``` + +Some of the icons used in Legup were taken from or derived from the icons found on https://fonts.google.com/icons, which +is licensed under the [Apache-2.0 license](https://www.apache.org/licenses/LICENSE-2.0.html). diff --git a/bin/main/edu/.idea/.gitignore b/bin/main/edu/.idea/.gitignore deleted file mode 100644 index 0e40fe8f5..000000000 --- a/bin/main/edu/.idea/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ - -# Default ignored files -/workspace.xml \ No newline at end of file diff --git a/bin/main/edu/.idea/.gitignore 2 b/bin/main/edu/.idea/.gitignore 2 deleted file mode 100644 index 0e40fe8f5..000000000 --- a/bin/main/edu/.idea/.gitignore 2 +++ /dev/null @@ -1,3 +0,0 @@ - -# Default ignored files -/workspace.xml \ No newline at end of file diff --git a/bin/main/edu/.idea/edu.iml b/bin/main/edu/.idea/edu.iml deleted file mode 100644 index d6ebd4805..000000000 --- a/bin/main/edu/.idea/edu.iml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/bin/main/edu/.idea/misc.xml b/bin/main/edu/.idea/misc.xml deleted file mode 100644 index 28a804d89..000000000 --- a/bin/main/edu/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/bin/main/edu/.idea/modules.xml b/bin/main/edu/.idea/modules.xml deleted file mode 100644 index 51e3d226a..000000000 --- a/bin/main/edu/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/bin/main/edu/.idea/vcs.xml b/bin/main/edu/.idea/vcs.xml deleted file mode 100644 index 4fce1d86b..000000000 --- a/bin/main/edu/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/bin/main/edu/build.gradle b/bin/main/edu/build.gradle deleted file mode 100644 index c78bb415c..000000000 --- a/bin/main/edu/build.gradle +++ /dev/null @@ -1,62 +0,0 @@ -version '2.0.0' - -apply plugin: 'java' -apply plugin: 'application' - -sourceCompatibility = 1.8 - -dependencies { - compile project(':legup-update') - compile 'com.google.firebase:firebase-admin:6.3.0' - compile 'org.apache.httpcomponents:httpclient:4.5.1' - compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25' - compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25' - -// compile 'com.google.code.gson:gson:2.8.2' -// compile 'commons-cli:commons-cli:1.4' -// compile 'commons-io:commons-io:2.6' - compile 'org.apache.commons:commons-lang3:3.7' - compile 'org.apache.logging.log4j:log4j-api:2.10.0' - compile 'org.apache.logging.log4j:log4j-core:2.10.0' - - testCompile group: 'junit', name: 'junit', version: '4.12' - testCompile 'junit:junit:4.+' -} - -task customFatJar(type: Jar) { - manifest { - attributes('Implementation-Title': 'Legup', - 'Implementation-Version': version, - 'Main-Class': 'edu.rpi.legup.Legup', - 'SplashScreen-Image': 'edu/rpi/legup/images/Legup/LegupSplash.png') - } - archiveName = 'Legup.jar' - from { - configurations.compile.collect { - it.isDirectory() ? it : zipTree(it) - } - } - with jar -} - -jar { - from { - configurations.compile.collect { - it.isDirectory() ? it : zipTree(it) - } - configurations.runtime.collect { - it.isDirectory() ? it : zipTree(it) - } - } - manifest { - attributes('Implementation-Title': 'Legup', - 'Implementation-Version': version, - 'Main-Class': 'edu.rpi.legup.Legup', - 'SplashScreen-Image': 'edu/rpi/legup/images/Legup/LegupSplash.png') - } - archiveName = 'Legup.jar' -} - -repositories { - mavenCentral() -} \ No newline at end of file diff --git a/bin/main/edu/rpi/.metadata/.log b/bin/main/edu/rpi/.metadata/.log deleted file mode 100644 index 6960a6639..000000000 --- a/bin/main/edu/rpi/.metadata/.log +++ /dev/null @@ -1,91 +0,0 @@ -!SESSION 2019-10-29 22:18:59.756 ----------------------------------------------- -eclipse.buildId=4.5.2.M20160212-1500 -java.version=1.8.0_131 -java.vendor=Oracle Corporation -BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US -Framework arguments: -product org.eclipse.epp.package.java.product -product org.eclipse.epp.package.java.product -keyring /Users/James/.eclipse_keyring -showlocation -Command-line arguments: -os macosx -ws cocoa -arch x86_64 -product org.eclipse.epp.package.java.product -data /Users/James/Documents/RPI/Research/LEGUP/Legup/src/main/java/edu/rpi -product org.eclipse.epp.package.java.product -keyring /Users/James/.eclipse_keyring -showlocation - -!ENTRY org.eclipse.recommenders.snipmatch.rcp 4 0 2019-10-29 22:19:00.381 -!MESSAGE FrameworkEvent ERROR -!STACK 0 -org.osgi.framework.BundleException: Could not resolve module: org.eclipse.recommenders.snipmatch.rcp [392] - Bundle was not resolved because of a uses contraint violation. - org.osgi.service.resolver.ResolutionException: Uses constraint violation. Unable to resolve resource org.eclipse.recommenders.snipmatch.rcp [osgi.identity; osgi.identity="org.eclipse.recommenders.snipmatch.rcp"; type="osgi.bundle"; version:Version="2.2.0.v20150609-1848"; singleton:="true"] because it is exposed to package 'org.eclipse.jgit.dircache' from resources org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="5.2.0.201812061821-r"] and org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="4.0.3.201509231615-r"] via two dependency chains. - -Chain 1: - org.eclipse.recommenders.snipmatch.rcp [osgi.identity; osgi.identity="org.eclipse.recommenders.snipmatch.rcp"; type="osgi.bundle"; version:Version="2.2.0.v20150609-1848"; singleton:="true"] - require: (osgi.wiring.bundle=org.eclipse.jgit) - | - provide: osgi.wiring.bundle: org.eclipse.jgit - org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="5.2.0.201812061821-r"] - -Chain 2: - org.eclipse.recommenders.snipmatch.rcp [osgi.identity; osgi.identity="org.eclipse.recommenders.snipmatch.rcp"; type="osgi.bundle"; version:Version="2.2.0.v20150609-1848"; singleton:="true"] - require: (&(osgi.wiring.bundle=org.eclipse.egit.core)(bundle-version>=3.2.0)) - | - provide: osgi.wiring.bundle; bundle-version:Version="4.0.3.201509231615-r"; osgi.wiring.bundle="org.eclipse.egit.core"; singleton:="true" - org.eclipse.egit.core [osgi.identity; osgi.identity="org.eclipse.egit.core"; type="osgi.bundle"; version:Version="4.0.3.201509231615-r"; singleton:="true"] - import: (&(osgi.wiring.package=org.eclipse.jgit.lib)(&(version>=4.0.3)(!(version>=4.1.0)))) - | - export: osgi.wiring.package: org.eclipse.jgit.lib; uses:=org.eclipse.jgit.dircache - export: osgi.wiring.package=org.eclipse.jgit.dircache - org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="4.0.3.201509231615-r"] - at org.eclipse.osgi.container.Module.start(Module.java:434) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1582) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1561) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1533) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1476) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1) - at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) - at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:340) - -!ENTRY org.eclipse.core.net 1 0 2019-10-29 22:19:03.398 -!MESSAGE System property http.nonProxyHosts has been set to local|*.local|169.254/16|*.169.254/16 by an external source. This value will be overwritten using the values from the preferences - -!ENTRY org.eclipse.core.jobs 2 2 2019-10-29 22:19:19.382 -!MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.epp.internal.logging.aeri.ui.log.CheckServerAvailabilityJob -!SESSION 2019-11-06 12:29:45.873 ----------------------------------------------- -eclipse.buildId=4.5.2.M20160212-1500 -java.version=1.8.0_131 -java.vendor=Oracle Corporation -BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US -Framework arguments: -product org.eclipse.epp.package.java.product -keyring /Users/James/.eclipse_keyring -showlocation -Command-line arguments: -os macosx -ws cocoa -arch x86_64 -product org.eclipse.epp.package.java.product -keyring /Users/James/.eclipse_keyring -showlocation - -!ENTRY org.eclipse.recommenders.snipmatch.rcp 4 0 2019-11-06 12:29:46.606 -!MESSAGE FrameworkEvent ERROR -!STACK 0 -org.osgi.framework.BundleException: Could not resolve module: org.eclipse.recommenders.snipmatch.rcp [392] - Bundle was not resolved because of a uses contraint violation. - org.osgi.service.resolver.ResolutionException: Uses constraint violation. Unable to resolve resource org.eclipse.recommenders.snipmatch.rcp [osgi.identity; osgi.identity="org.eclipse.recommenders.snipmatch.rcp"; type="osgi.bundle"; version:Version="2.2.0.v20150609-1848"; singleton:="true"] because it is exposed to package 'org.eclipse.jgit.dircache' from resources org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="5.2.0.201812061821-r"] and org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="4.0.3.201509231615-r"] via two dependency chains. - -Chain 1: - org.eclipse.recommenders.snipmatch.rcp [osgi.identity; osgi.identity="org.eclipse.recommenders.snipmatch.rcp"; type="osgi.bundle"; version:Version="2.2.0.v20150609-1848"; singleton:="true"] - require: (osgi.wiring.bundle=org.eclipse.jgit) - | - provide: osgi.wiring.bundle: org.eclipse.jgit - org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="5.2.0.201812061821-r"] - -Chain 2: - org.eclipse.recommenders.snipmatch.rcp [osgi.identity; osgi.identity="org.eclipse.recommenders.snipmatch.rcp"; type="osgi.bundle"; version:Version="2.2.0.v20150609-1848"; singleton:="true"] - require: (&(osgi.wiring.bundle=org.eclipse.egit.core)(bundle-version>=3.2.0)) - | - provide: osgi.wiring.bundle; bundle-version:Version="4.0.3.201509231615-r"; osgi.wiring.bundle="org.eclipse.egit.core"; singleton:="true" - org.eclipse.egit.core [osgi.identity; osgi.identity="org.eclipse.egit.core"; type="osgi.bundle"; version:Version="4.0.3.201509231615-r"; singleton:="true"] - import: (&(osgi.wiring.package=org.eclipse.jgit.lib)(&(version>=4.0.3)(!(version>=4.1.0)))) - | - export: osgi.wiring.package: org.eclipse.jgit.lib; uses:=org.eclipse.jgit.dircache - export: osgi.wiring.package=org.eclipse.jgit.dircache - org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="4.0.3.201509231615-r"] - at org.eclipse.osgi.container.Module.start(Module.java:434) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1582) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1561) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1533) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1476) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1) - at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) - at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:340) - -!ENTRY org.eclipse.core.net 1 0 2019-11-06 12:29:49.825 -!MESSAGE System property http.nonProxyHosts has been set to local|*.local|169.254/16|*.169.254/16 by an external source. This value will be overwritten using the values from the preferences diff --git a/bin/main/edu/rpi/.metadata/.mylyn/.taskListIndex/segments 2.gen b/bin/main/edu/rpi/.metadata/.mylyn/.taskListIndex/segments 2.gen deleted file mode 100644 index 63a7ec9a3..000000000 Binary files a/bin/main/edu/rpi/.metadata/.mylyn/.taskListIndex/segments 2.gen and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.mylyn/.taskListIndex/segments.gen b/bin/main/edu/rpi/.metadata/.mylyn/.taskListIndex/segments.gen deleted file mode 100644 index 63a7ec9a3..000000000 Binary files a/bin/main/edu/rpi/.metadata/.mylyn/.taskListIndex/segments.gen and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.mylyn/.taskListIndex/segments_1 b/bin/main/edu/rpi/.metadata/.mylyn/.taskListIndex/segments_1 deleted file mode 100644 index 7efd8c620..000000000 Binary files a/bin/main/edu/rpi/.metadata/.mylyn/.taskListIndex/segments_1 and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.mylyn/repositories.xml.zip b/bin/main/edu/rpi/.metadata/.mylyn/repositories.xml.zip deleted file mode 100644 index 4cd0063f8..000000000 Binary files a/bin/main/edu/rpi/.metadata/.mylyn/repositories.xml.zip and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.mylyn/tasks.xml.zip b/bin/main/edu/rpi/.metadata/.mylyn/tasks.xml.zip deleted file mode 100644 index 8c3e73da3..000000000 Binary files a/bin/main/edu/rpi/.metadata/.mylyn/tasks.xml.zip and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history 2.version b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history 2.version deleted file mode 100644 index 25cb955ba..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history 2.version +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version deleted file mode 100644 index 25cb955ba..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index deleted file mode 100644 index 7ea794608..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version deleted file mode 100644 index 6b2aaa764..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree deleted file mode 100644 index 8a1fc9ec5..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core 2.resources b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core 2.resources deleted file mode 100644 index 9f39d0588..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core 2.resources and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources deleted file mode 100644 index 9f39d0588..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources 2.prefs b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources 2.prefs deleted file mode 100644 index dffc6b513..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources 2.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -version=1 diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index dffc6b513..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -version=1 diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs deleted file mode 100644 index 1768a1e88..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs +++ /dev/null @@ -1,13 +0,0 @@ -content_assist_proposals_background=255,255,255 -content_assist_proposals_foreground=0,0,0 -eclipse.preferences.version=1 -fontPropagated=true -org.eclipse.jdt.ui.editor.tab.width= -org.eclipse.jdt.ui.formatterprofiles.version=12 -org.eclipse.jdt.ui.javadoclocations.migrated=true -org.eclipse.jface.textfont=1|Monaco|11.0|0|COCOA|1|; -proposalOrderMigrated=true -spelling_locale_initialized=true -tabWidthPropagated=true -useAnnotationsPrefPage=true -useQuickDiffPrefPage=true diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.discovery.prefs b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.discovery.prefs deleted file mode 100644 index 67b1d96c9..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.discovery.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.m2e.discovery.pref.projects= diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core.prefs b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core.prefs deleted file mode 100644 index 43e97e405..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -mylyn.attention.migrated=true diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui.prefs b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui.prefs deleted file mode 100644 index 8d462a6cf..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.tasks.ui.prefs b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.tasks.ui.prefs deleted file mode 100644 index 2b60c21d6..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.tasks.ui.prefs +++ /dev/null @@ -1,5 +0,0 @@ -eclipse.preferences.version=1 -migrated.task.repositories.secure.store=true -org.eclipse.mylyn.tasks.ui.filters.nonmatching=true -org.eclipse.mylyn.tasks.ui.filters.nonmatching.encouraged=true -org.eclipse.mylyn.tasks.ui.welcome.message=true diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs deleted file mode 100644 index da2be0834..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs +++ /dev/null @@ -1,5 +0,0 @@ -PROBLEMS_FILTERS_MIGRATE=true -eclipse.preferences.version=1 -platformState=1554955212164 -quickStart=false -tipsAndTricks=true diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs deleted file mode 100644 index 08076f236..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -showIntro=false diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs deleted file mode 100644 index dd774965c..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs +++ /dev/null @@ -1,3 +0,0 @@ -//org.eclipse.ui.commands/state/org.eclipse.ui.navigator.resources.nested.changeProjectPresentation/org.eclipse.ui.commands.radioState=false -PLUGINS_NOT_ACTIVATED_ON_STARTUP=org.eclipse.m2e.discovery; -eclipse.preferences.version=1 diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.e4.workbench/workbench 2.xmi b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.e4.workbench/workbench 2.xmi deleted file mode 100644 index 72c587915..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.e4.workbench/workbench 2.xmi +++ /dev/null @@ -1,2304 +0,0 @@ - - - - activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration - ModelMigrationProcessor.001 - - - - - - - - topLevel - - - - - persp.actionSet:org.eclipse.mylyn.doc.actionSet - persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation - persp.actionSet:org.eclipse.ui.cheatsheets.actionSet - persp.actionSet:org.eclipse.search.searchActionSet - persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation - persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation - persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo - persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet - persp.actionSet:org.eclipse.ui.actionSet.keyBindings - persp.actionSet:org.eclipse.ui.actionSet.openFiles - persp.actionSet:org.eclipse.wb.core.ui.actionset - persp.actionSet:org.eclipse.debug.ui.launchActionSet - persp.actionSet:org.eclipse.jdt.ui.JavaActionSet - persp.actionSet:org.eclipse.jdt.ui.JavaElementCreationActionSet - persp.actionSet:org.eclipse.ui.NavigateActionSet - persp.viewSC:org.eclipse.jdt.ui.PackageExplorer - persp.viewSC:org.eclipse.jdt.ui.TypeHierarchy - persp.viewSC:org.eclipse.jdt.ui.SourceView - persp.viewSC:org.eclipse.jdt.ui.JavadocView - persp.viewSC:org.eclipse.search.ui.views.SearchView - persp.viewSC:org.eclipse.ui.console.ConsoleView - persp.viewSC:org.eclipse.ui.views.ContentOutline - persp.viewSC:org.eclipse.ui.views.ProblemView - persp.viewSC:org.eclipse.ui.views.ResourceNavigator - persp.viewSC:org.eclipse.ui.views.TaskList - persp.viewSC:org.eclipse.ui.views.ProgressView - persp.viewSC:org.eclipse.ui.navigator.ProjectExplorer - persp.viewSC:org.eclipse.ui.texteditor.TemplatesView - persp.viewSC:org.eclipse.pde.runtime.LogView - persp.newWizSC:org.eclipse.jdt.ui.wizards.JavaProjectWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewPackageCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewClassCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewInterfaceCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewEnumCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewAnnotationCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewSourceFolderCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewSnippetFileCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewJavaWorkingSetWizard - persp.newWizSC:org.eclipse.ui.wizards.new.folder - persp.newWizSC:org.eclipse.ui.wizards.new.file - persp.newWizSC:org.eclipse.ui.editors.wizards.UntitledTextFileWizard - persp.perspSC:org.eclipse.jdt.ui.JavaBrowsingPerspective - persp.perspSC:org.eclipse.debug.ui.DebugPerspective - persp.perspSC:com.android.ide.eclipse.ddms.Perspective - persp.viewSC:org.eclipse.ant.ui.views.AntView - persp.actionSet:org.eclipse.eclemma.ui.CoverageActionSet - persp.showIn:org.eclipse.eclemma.ui.CoverageView - persp.showIn:org.eclipse.egit.ui.RepositoriesView - persp.actionSet:org.eclipse.debug.ui.breakpointActionSet - persp.actionSet:org.eclipse.jdt.debug.ui.JDTDebugActionSet - persp.newWizSC:org.eclipse.jdt.junit.wizards.NewTestCaseCreationWizard - persp.actionSet:org.eclipse.jdt.junit.JUnitActionSet - persp.showIn:org.eclipse.jdt.ui.PackageExplorer - persp.showIn:org.eclipse.team.ui.GenericHistoryView - persp.showIn:org.eclipse.ui.views.ResourceNavigator - persp.showIn:org.eclipse.ui.navigator.ProjectExplorer - persp.viewSC:org.eclipse.mylyn.tasks.ui.views.tasks - persp.newWizSC:org.eclipse.mylyn.tasks.ui.wizards.new.repository.task - persp.viewSC:org.eclipse.wb.core.StructureView - persp.viewSC:org.eclipse.wb.core.PaletteView - - - - org.eclipse.e4.primaryNavigationStack - - - - - - - - - - - - - - - - - - active - - - - org.eclipse.e4.secondaryNavigationStack - - - - - - - - org.eclipse.e4.secondaryDataStack - - - - - - - - - - - - - - - - - - - - View - categoryTag:Help - - - View - categoryTag:General - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:Help - - - - org.eclipse.e4.primaryDataStack - EditorStack - - - - - View - categoryTag:Java - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:Java - - - View - categoryTag:General - - - View - categoryTag:General - - - - View - categoryTag:General - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - - View - categoryTag:General - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:General - - - View - categoryTag:Ant - - - View - categoryTag:Git - - - View - categoryTag:Java - - - - View - categoryTag:Mylyn - active - activeOnClose - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:WindowBuilder - - - View - categoryTag:WindowBuilder - - - - toolbarSeparator - - - - Draggable - - - - toolbarSeparator - - - - Draggable - - - Draggable - - - Draggable - - - toolbarSeparator - - - - Draggable - - - - toolbarSeparator - - - - toolbarSeparator - - - - Draggable - - - stretch - SHOW_RESTORE_MENU - - - Draggable - HIDEABLE - SHOW_RESTORE_MENU - - - - - stretch - - - Draggable - - - Draggable - - - - - - TrimStack - - - - - - - - - - - - - - - - - - - - platform:cocoa - - - - - - - platform:cocoa - - - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - - - - - - - - - - - - - - platform:cocoa - - - platform:cocoa - - - - - - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - - platform:cocoa - - - - platform:cocoa - - - - - - - platform:cocoa - - - platform:cocoa - - - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - - - - - - - platform:cocoa - - - - - - - - - - - - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - - - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - - - - - - - - - platform:cocoa - - - - - - - - - - - - - platform:cocoa - - - - platform:cocoa - - - - - - - - - - - - - platform:cocoa - - - - - - - - - - - - - - - - - - - platform:cocoa - - - platform:cocoa - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - platform:cocoa - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Editor - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Tracer for OpenGL ES - - - View - categoryTag:Tracer for OpenGL ES - - - View - categoryTag:Tracer for OpenGL ES - - - View - categoryTag:Ant - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Java - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:General - - - View - categoryTag:Help - - - View - categoryTag:Debug - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java - - - View - categoryTag:General - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:Maven - - - View - categoryTag:Maven - - - View - categoryTag:Mylyn - - - View - categoryTag:Mylyn - - - View - categoryTag:Mylyn - - - View - categoryTag:Mylyn - - - View - categoryTag:Oomph - - - View - categoryTag:Code Recommenders - - - View - categoryTag:Code Recommenders - - - View - categoryTag:Code Recommenders - - - View - categoryTag:Code Recommenders - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:Team - - - View - categoryTag:Team - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:Help - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:WindowBuilder - - - View - categoryTag:WindowBuilder - - - View - categoryTag:General - - - View - categoryTag:XML - - - View - categoryTag:XML - - - - glue - move_after:PerspectiveSpacer - SHOW_RESTORE_MENU - - - move_after:Spacer Glue - HIDEABLE - SHOW_RESTORE_MENU - - - glue - move_after:SearchField - SHOW_RESTORE_MENU - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi deleted file mode 100644 index 72c587915..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi +++ /dev/null @@ -1,2304 +0,0 @@ - - - - activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration - ModelMigrationProcessor.001 - - - - - - - - topLevel - - - - - persp.actionSet:org.eclipse.mylyn.doc.actionSet - persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation - persp.actionSet:org.eclipse.ui.cheatsheets.actionSet - persp.actionSet:org.eclipse.search.searchActionSet - persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation - persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation - persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo - persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet - persp.actionSet:org.eclipse.ui.actionSet.keyBindings - persp.actionSet:org.eclipse.ui.actionSet.openFiles - persp.actionSet:org.eclipse.wb.core.ui.actionset - persp.actionSet:org.eclipse.debug.ui.launchActionSet - persp.actionSet:org.eclipse.jdt.ui.JavaActionSet - persp.actionSet:org.eclipse.jdt.ui.JavaElementCreationActionSet - persp.actionSet:org.eclipse.ui.NavigateActionSet - persp.viewSC:org.eclipse.jdt.ui.PackageExplorer - persp.viewSC:org.eclipse.jdt.ui.TypeHierarchy - persp.viewSC:org.eclipse.jdt.ui.SourceView - persp.viewSC:org.eclipse.jdt.ui.JavadocView - persp.viewSC:org.eclipse.search.ui.views.SearchView - persp.viewSC:org.eclipse.ui.console.ConsoleView - persp.viewSC:org.eclipse.ui.views.ContentOutline - persp.viewSC:org.eclipse.ui.views.ProblemView - persp.viewSC:org.eclipse.ui.views.ResourceNavigator - persp.viewSC:org.eclipse.ui.views.TaskList - persp.viewSC:org.eclipse.ui.views.ProgressView - persp.viewSC:org.eclipse.ui.navigator.ProjectExplorer - persp.viewSC:org.eclipse.ui.texteditor.TemplatesView - persp.viewSC:org.eclipse.pde.runtime.LogView - persp.newWizSC:org.eclipse.jdt.ui.wizards.JavaProjectWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewPackageCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewClassCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewInterfaceCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewEnumCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewAnnotationCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewSourceFolderCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewSnippetFileCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewJavaWorkingSetWizard - persp.newWizSC:org.eclipse.ui.wizards.new.folder - persp.newWizSC:org.eclipse.ui.wizards.new.file - persp.newWizSC:org.eclipse.ui.editors.wizards.UntitledTextFileWizard - persp.perspSC:org.eclipse.jdt.ui.JavaBrowsingPerspective - persp.perspSC:org.eclipse.debug.ui.DebugPerspective - persp.perspSC:com.android.ide.eclipse.ddms.Perspective - persp.viewSC:org.eclipse.ant.ui.views.AntView - persp.actionSet:org.eclipse.eclemma.ui.CoverageActionSet - persp.showIn:org.eclipse.eclemma.ui.CoverageView - persp.showIn:org.eclipse.egit.ui.RepositoriesView - persp.actionSet:org.eclipse.debug.ui.breakpointActionSet - persp.actionSet:org.eclipse.jdt.debug.ui.JDTDebugActionSet - persp.newWizSC:org.eclipse.jdt.junit.wizards.NewTestCaseCreationWizard - persp.actionSet:org.eclipse.jdt.junit.JUnitActionSet - persp.showIn:org.eclipse.jdt.ui.PackageExplorer - persp.showIn:org.eclipse.team.ui.GenericHistoryView - persp.showIn:org.eclipse.ui.views.ResourceNavigator - persp.showIn:org.eclipse.ui.navigator.ProjectExplorer - persp.viewSC:org.eclipse.mylyn.tasks.ui.views.tasks - persp.newWizSC:org.eclipse.mylyn.tasks.ui.wizards.new.repository.task - persp.viewSC:org.eclipse.wb.core.StructureView - persp.viewSC:org.eclipse.wb.core.PaletteView - - - - org.eclipse.e4.primaryNavigationStack - - - - - - - - - - - - - - - - - - active - - - - org.eclipse.e4.secondaryNavigationStack - - - - - - - - org.eclipse.e4.secondaryDataStack - - - - - - - - - - - - - - - - - - - - View - categoryTag:Help - - - View - categoryTag:General - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:Help - - - - org.eclipse.e4.primaryDataStack - EditorStack - - - - - View - categoryTag:Java - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:Java - - - View - categoryTag:General - - - View - categoryTag:General - - - - View - categoryTag:General - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - - View - categoryTag:General - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:General - - - View - categoryTag:Ant - - - View - categoryTag:Git - - - View - categoryTag:Java - - - - View - categoryTag:Mylyn - active - activeOnClose - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:WindowBuilder - - - View - categoryTag:WindowBuilder - - - - toolbarSeparator - - - - Draggable - - - - toolbarSeparator - - - - Draggable - - - Draggable - - - Draggable - - - toolbarSeparator - - - - Draggable - - - - toolbarSeparator - - - - toolbarSeparator - - - - Draggable - - - stretch - SHOW_RESTORE_MENU - - - Draggable - HIDEABLE - SHOW_RESTORE_MENU - - - - - stretch - - - Draggable - - - Draggable - - - - - - TrimStack - - - - - - - - - - - - - - - - - - - - platform:cocoa - - - - - - - platform:cocoa - - - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - - - - - - - - - - - - - - platform:cocoa - - - platform:cocoa - - - - - - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - - platform:cocoa - - - - platform:cocoa - - - - - - - platform:cocoa - - - platform:cocoa - - - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - - - - - - - platform:cocoa - - - - - - - - - - - - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - - - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - - - - - - - - - platform:cocoa - - - - - - - - - - - - - platform:cocoa - - - - platform:cocoa - - - - - - - - - - - - - platform:cocoa - - - - - - - - - - - - - - - - - - - platform:cocoa - - - platform:cocoa - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - platform:cocoa - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Editor - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Tracer for OpenGL ES - - - View - categoryTag:Tracer for OpenGL ES - - - View - categoryTag:Tracer for OpenGL ES - - - View - categoryTag:Ant - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Java - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:General - - - View - categoryTag:Help - - - View - categoryTag:Debug - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java - - - View - categoryTag:General - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:Maven - - - View - categoryTag:Maven - - - View - categoryTag:Mylyn - - - View - categoryTag:Mylyn - - - View - categoryTag:Mylyn - - - View - categoryTag:Mylyn - - - View - categoryTag:Oomph - - - View - categoryTag:Code Recommenders - - - View - categoryTag:Code Recommenders - - - View - categoryTag:Code Recommenders - - - View - categoryTag:Code Recommenders - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:Team - - - View - categoryTag:Team - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:Help - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:WindowBuilder - - - View - categoryTag:WindowBuilder - - - View - categoryTag:General - - - View - categoryTag:XML - - - View - categoryTag:XML - - - - glue - move_after:PerspectiveSpacer - SHOW_RESTORE_MENU - - - move_after:Spacer Glue - HIDEABLE - SHOW_RESTORE_MENU - - - glue - move_after:SearchField - SHOW_RESTORE_MENU - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fdt b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fdt deleted file mode 100644 index d5abf41cc..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fdt and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fdx b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fdx deleted file mode 100644 index b8ee80957..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fdx and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fnm b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fnm deleted file mode 100644 index 523c92e25..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fnm +++ /dev/null @@ -1 +0,0 @@ -ýÿÿÿversion \ No newline at end of file diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.frq b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.frq deleted file mode 100644 index e69de29bb..000000000 diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.nrm b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.nrm deleted file mode 100644 index cf8dc7529..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.nrm +++ /dev/null @@ -1 +0,0 @@ -NRMÿ \ No newline at end of file diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.tii b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.tii deleted file mode 100644 index ebd518d6e..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.tii and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.tis b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.tis deleted file mode 100644 index ebd518d6e..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.tis and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fdt b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fdt deleted file mode 100644 index d5abf41cc..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fdt and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fdx b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fdx deleted file mode 100644 index b8ee80957..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fdx and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fnm b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fnm deleted file mode 100644 index 523c92e25..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fnm +++ /dev/null @@ -1 +0,0 @@ -ýÿÿÿversion \ No newline at end of file diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.frq b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.frq deleted file mode 100644 index e69de29bb..000000000 diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.nrm b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.nrm deleted file mode 100644 index cf8dc7529..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.nrm +++ /dev/null @@ -1 +0,0 @@ -NRMÿ \ No newline at end of file diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.tii b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.tii deleted file mode 100644 index ebd518d6e..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.tii and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.tis b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.tis deleted file mode 100644 index ebd518d6e..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.tis and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments 2.gen b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments 2.gen deleted file mode 100644 index 63a7ec9a3..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments 2.gen and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments.gen b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments.gen deleted file mode 100644 index 63a7ec9a3..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments.gen and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments_1 b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments_1 deleted file mode 100644 index 305fb89e6..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments_1 and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments_1 2 b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments_1 2 deleted file mode 100644 index 305fb89e6..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments_1 2 and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0 2.fdt b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0 2.fdt deleted file mode 100644 index d5abf41cc..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0 2.fdt and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fdt b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fdt deleted file mode 100644 index d5abf41cc..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fdt and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fdx b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fdx deleted file mode 100644 index b8ee80957..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fdx and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fnm b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fnm deleted file mode 100644 index 523c92e25..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fnm +++ /dev/null @@ -1 +0,0 @@ -ýÿÿÿversion \ No newline at end of file diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.frq b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.frq deleted file mode 100644 index e69de29bb..000000000 diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.nrm b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.nrm deleted file mode 100644 index cf8dc7529..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.nrm +++ /dev/null @@ -1 +0,0 @@ -NRMÿ \ No newline at end of file diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.tii b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.tii deleted file mode 100644 index ebd518d6e..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.tii and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.tis b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.tis deleted file mode 100644 index ebd518d6e..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.tis and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/segments.gen b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/segments.gen deleted file mode 100644 index 63a7ec9a3..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/segments.gen and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/segments_1 b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/segments_1 deleted file mode 100644 index 305fb89e6..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/segments_1 and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache deleted file mode 100644 index 593f4708d..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache 2 b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache 2 deleted file mode 100644 index 593f4708d..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache 2 and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/externalFilesCache b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/externalFilesCache deleted file mode 100644 index 593f4708d..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/externalFilesCache and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache deleted file mode 100644 index 593f4708d..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat deleted file mode 100644 index 0edae4b20..000000000 Binary files a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat and /dev/null differ diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory 2.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory 2.xml deleted file mode 100644 index a4ee3cbc9..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory 2.xml +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml deleted file mode 100644 index a4ee3cbc9..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml deleted file mode 100644 index 9e390f501..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml index a28d67e95..105ea7e2b 100644 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml +++ b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml @@ -1,10 +1,11 @@
-
- - - - - -
+
+ + + + + +
diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.m2e.logback.configuration/0 2.log b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.m2e.logback.configuration/0 2.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.m2e.logback.configuration/0.log b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.m2e.logback.configuration/0.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032 2.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032 2.xml deleted file mode 100644 index e33758c3a..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032 2.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - %date [%thread] %-5level %logger{35} - %msg%n - - - OFF - - - - - ${org.eclipse.m2e.log.dir}/0.log - - ${org.eclipse.m2e.log.dir}/%i.log - 1 - 10 - - - 100MB - - - %date [%thread] %-5level %logger{35} - %msg%n - - - - - - WARN - - - - - - - - - - - - - - - diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032.xml index e33758c3a..63d411340 100644 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032.xml +++ b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032.xml @@ -1,43 +1,43 @@ - - - %date [%thread] %-5level %logger{35} - %msg%n - - - OFF - - + + + %date [%thread] %-5level %logger{35} - %msg%n + + + OFF + + - - ${org.eclipse.m2e.log.dir}/0.log - - ${org.eclipse.m2e.log.dir}/%i.log - 1 - 10 - - - 100MB - - - %date [%thread] %-5level %logger{35} - %msg%n - - + + ${org.eclipse.m2e.log.dir}/0.log + + ${org.eclipse.m2e.log.dir}/%i.log + 1 + 10 + + + 100MB + + + %date [%thread] %-5level %logger{35} - %msg%n + + - - - WARN - - + + + WARN + + - - - - - - - - - + + - + + + + + + + + diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.oomph.setup/workspace 2.setup b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.oomph.setup/workspace 2.setup deleted file mode 100644 index 1f73e14c1..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.oomph.setup/workspace 2.setup +++ /dev/null @@ -1,6 +0,0 @@ - - diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.oomph.setup/workspace.setup b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.oomph.setup/workspace.setup deleted file mode 100644 index 1f73e14c1..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.oomph.setup/workspace.setup +++ /dev/null @@ -1,6 +0,0 @@ - - diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings 2.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings 2.xml deleted file mode 100644 index a033ea971..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings 2.xml +++ /dev/null @@ -1,11 +0,0 @@ - -
-
- - -
-
- - -
-
diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml index a033ea971..c00d6ca9e 100644 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml +++ b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml @@ -1,11 +1,11 @@
-
- - -
-
- - -
+
+ + +
+
+ + +
diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.intro/dialog_settings 2.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.intro/dialog_settings 2.xml deleted file mode 100644 index f118f0213..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.intro/dialog_settings 2.xml +++ /dev/null @@ -1,4 +0,0 @@ - -
- -
diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.intro/dialog_settings.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.intro/dialog_settings.xml index f118f0213..541da6a75 100644 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.intro/dialog_settings.xml +++ b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.intro/dialog_settings.xml @@ -1,4 +1,4 @@
- +
diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings 2.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings 2.xml deleted file mode 100644 index 642340857..000000000 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings 2.xml +++ /dev/null @@ -1,15 +0,0 @@ - -
-
- - - - - - - - - - -
-
diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml index 642340857..01f7412af 100644 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml +++ b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml @@ -1,15 +1,15 @@
-
- - - - - - - - - - -
+
+ + + + + + + + + + +
diff --git a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml index 364676f03..ef53d8bf2 100644 --- a/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml +++ b/bin/main/edu/rpi/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml @@ -1,4 +1,5 @@ - + \ No newline at end of file diff --git a/bin/main/edu/rpi/.metadata/version.ini b/bin/main/edu/rpi/.metadata/version.ini deleted file mode 100644 index a612e14df..000000000 --- a/bin/main/edu/rpi/.metadata/version.ini +++ /dev/null @@ -1,3 +0,0 @@ -#Wed Nov 06 12:29:47 EST 2019 -org.eclipse.core.runtime=2 -org.eclipse.platform=4.5.2.v20160212-1500 diff --git a/bin/main/edu/rpi/legup/.metadata/.lock b/bin/main/edu/rpi/legup/.metadata/.lock deleted file mode 100644 index e69de29bb..000000000 diff --git a/bin/main/edu/rpi/legup/.metadata/.lock 2 b/bin/main/edu/rpi/legup/.metadata/.lock 2 deleted file mode 100644 index e69de29bb..000000000 diff --git a/bin/main/edu/rpi/legup/.metadata/.log b/bin/main/edu/rpi/legup/.metadata/.log deleted file mode 100644 index 15c0718da..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.log +++ /dev/null @@ -1,116 +0,0 @@ -!SESSION 2019-10-23 14:12:58.040 ----------------------------------------------- -eclipse.buildId=4.5.2.M20160212-1500 -java.version=1.8.0_131 -java.vendor=Oracle Corporation -BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US -Framework arguments: -product org.eclipse.epp.package.java.product -product org.eclipse.epp.package.java.product -keyring /Users/James/.eclipse_keyring -showlocation -Command-line arguments: -os macosx -ws cocoa -arch x86_64 -product org.eclipse.epp.package.java.product -data /Users/James/Documents/RPI/Research/LEGUP/Legup/src/main/java/edu/rpi/legup -product org.eclipse.epp.package.java.product -keyring /Users/James/.eclipse_keyring -showlocation - -!ENTRY org.eclipse.recommenders.snipmatch.rcp 4 0 2019-10-23 14:12:58.665 -!MESSAGE FrameworkEvent ERROR -!STACK 0 -org.osgi.framework.BundleException: Could not resolve module: org.eclipse.recommenders.snipmatch.rcp [392] - Bundle was not resolved because of a uses contraint violation. - org.osgi.service.resolver.ResolutionException: Uses constraint violation. Unable to resolve resource org.eclipse.recommenders.snipmatch.rcp [osgi.identity; osgi.identity="org.eclipse.recommenders.snipmatch.rcp"; type="osgi.bundle"; version:Version="2.2.0.v20150609-1848"; singleton:="true"] because it is exposed to package 'org.eclipse.jgit.dircache' from resources org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="5.2.0.201812061821-r"] and org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="4.0.3.201509231615-r"] via two dependency chains. - -Chain 1: - org.eclipse.recommenders.snipmatch.rcp [osgi.identity; osgi.identity="org.eclipse.recommenders.snipmatch.rcp"; type="osgi.bundle"; version:Version="2.2.0.v20150609-1848"; singleton:="true"] - require: (osgi.wiring.bundle=org.eclipse.jgit) - | - provide: osgi.wiring.bundle: org.eclipse.jgit - org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="5.2.0.201812061821-r"] - -Chain 2: - org.eclipse.recommenders.snipmatch.rcp [osgi.identity; osgi.identity="org.eclipse.recommenders.snipmatch.rcp"; type="osgi.bundle"; version:Version="2.2.0.v20150609-1848"; singleton:="true"] - require: (&(osgi.wiring.bundle=org.eclipse.egit.core)(bundle-version>=3.2.0)) - | - provide: osgi.wiring.bundle; bundle-version:Version="4.0.3.201509231615-r"; osgi.wiring.bundle="org.eclipse.egit.core"; singleton:="true" - org.eclipse.egit.core [osgi.identity; osgi.identity="org.eclipse.egit.core"; type="osgi.bundle"; version:Version="4.0.3.201509231615-r"; singleton:="true"] - import: (&(osgi.wiring.package=org.eclipse.jgit.lib)(&(version>=4.0.3)(!(version>=4.1.0)))) - | - export: osgi.wiring.package: org.eclipse.jgit.lib; uses:=org.eclipse.jgit.dircache - export: osgi.wiring.package=org.eclipse.jgit.dircache - org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="4.0.3.201509231615-r"] - at org.eclipse.osgi.container.Module.start(Module.java:434) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1582) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1561) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1533) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1476) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1) - at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) - at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:340) - -!ENTRY org.eclipse.core.net 1 0 2019-10-23 14:13:01.501 -!MESSAGE System property http.nonProxyHosts has been set to local|*.local|169.254/16|*.169.254/16 by an external source. This value will be overwritten using the values from the preferences -!SESSION 2019-10-29 22:17:23.239 ----------------------------------------------- -eclipse.buildId=4.5.2.M20160212-1500 -java.version=1.8.0_131 -java.vendor=Oracle Corporation -BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US -Framework arguments: -product org.eclipse.epp.package.java.product -keyring /Users/James/.eclipse_keyring -showlocation -Command-line arguments: -os macosx -ws cocoa -arch x86_64 -product org.eclipse.epp.package.java.product -keyring /Users/James/.eclipse_keyring -showlocation - -!ENTRY org.eclipse.recommenders.snipmatch.rcp 4 0 2019-10-29 22:17:23.914 -!MESSAGE FrameworkEvent ERROR -!STACK 0 -org.osgi.framework.BundleException: Could not resolve module: org.eclipse.recommenders.snipmatch.rcp [392] - Bundle was not resolved because of a uses contraint violation. - org.osgi.service.resolver.ResolutionException: Uses constraint violation. Unable to resolve resource org.eclipse.recommenders.snipmatch.rcp [osgi.identity; osgi.identity="org.eclipse.recommenders.snipmatch.rcp"; type="osgi.bundle"; version:Version="2.2.0.v20150609-1848"; singleton:="true"] because it is exposed to package 'org.eclipse.jgit.dircache' from resources org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="5.2.0.201812061821-r"] and org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="4.0.3.201509231615-r"] via two dependency chains. - -Chain 1: - org.eclipse.recommenders.snipmatch.rcp [osgi.identity; osgi.identity="org.eclipse.recommenders.snipmatch.rcp"; type="osgi.bundle"; version:Version="2.2.0.v20150609-1848"; singleton:="true"] - require: (osgi.wiring.bundle=org.eclipse.jgit) - | - provide: osgi.wiring.bundle: org.eclipse.jgit - org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="5.2.0.201812061821-r"] - -Chain 2: - org.eclipse.recommenders.snipmatch.rcp [osgi.identity; osgi.identity="org.eclipse.recommenders.snipmatch.rcp"; type="osgi.bundle"; version:Version="2.2.0.v20150609-1848"; singleton:="true"] - require: (&(osgi.wiring.bundle=org.eclipse.egit.core)(bundle-version>=3.2.0)) - | - provide: osgi.wiring.bundle; bundle-version:Version="4.0.3.201509231615-r"; osgi.wiring.bundle="org.eclipse.egit.core"; singleton:="true" - org.eclipse.egit.core [osgi.identity; osgi.identity="org.eclipse.egit.core"; type="osgi.bundle"; version:Version="4.0.3.201509231615-r"; singleton:="true"] - import: (&(osgi.wiring.package=org.eclipse.jgit.lib)(&(version>=4.0.3)(!(version>=4.1.0)))) - | - export: osgi.wiring.package: org.eclipse.jgit.lib; uses:=org.eclipse.jgit.dircache - export: osgi.wiring.package=org.eclipse.jgit.dircache - org.eclipse.jgit [osgi.identity; osgi.identity="org.eclipse.jgit"; type="osgi.bundle"; version:Version="4.0.3.201509231615-r"] - at org.eclipse.osgi.container.Module.start(Module.java:434) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1582) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1561) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1533) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1476) - at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1) - at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) - at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:340) - -!ENTRY org.eclipse.core.net 1 0 2019-10-29 22:17:27.175 -!MESSAGE System property http.nonProxyHosts has been set to local|*.local|169.254/16|*.169.254/16 by an external source. This value will be overwritten using the values from the preferences - -!ENTRY org.eclipse.epp.logging.aeri.ui 2 23 2019-10-29 22:18:10.094 -!MESSAGE The server availability check failed Version: 1.0.0.v20150617-0732 -!STACK 0 -java.net.UnknownHostException: dev.eclipse.org: nodename nor servname provided, or not known - at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) - at java.net.InetAddress$2.lookupAllHostAddr(InetAddress.java:928) - at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1323) - at java.net.InetAddress.getAllByName0(InetAddress.java:1276) - at java.net.InetAddress.getAllByName(InetAddress.java:1192) - at java.net.InetAddress.getAllByName(InetAddress.java:1126) - at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) - at org.apache.http.impl.conn.HttpClientConnectionOperator.connect(HttpClientConnectionOperator.java:102) - at org.apache.http.impl.conn.PoolingHttpClientConnectionManager.connect(PoolingHttpClientConnectionManager.java:319) - at org.apache.http.impl.execchain.MainClientExec.establishRoute(MainClientExec.java:363) - at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:219) - at org.apache.http.impl.execchain.ProtocolExec.execute(ProtocolExec.java:195) - at org.apache.http.impl.execchain.RetryExec.execute(RetryExec.java:86) - at org.apache.http.impl.execchain.RedirectExec.execute(RedirectExec.java:108) - at org.apache.http.impl.client.InternalHttpClient.doExecute(InternalHttpClient.java:184) - at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) - at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:57) - at org.apache.http.client.fluent.Executor.execute(Executor.java:206) - at org.eclipse.epp.internal.logging.aeri.ui.log.CheckServerAvailabilityJob.run(CheckServerAvailabilityJob.java:48) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55) - -!ENTRY org.eclipse.core.jobs 2 2 2019-10-29 22:18:59.533 -!MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.epp.internal.logging.aeri.ui.log.ProblemsDatabaseUpdateJob diff --git a/bin/main/edu/rpi/legup/.metadata/.mylyn/.taskListIndex/segments 2.gen b/bin/main/edu/rpi/legup/.metadata/.mylyn/.taskListIndex/segments 2.gen deleted file mode 100644 index 63a7ec9a3..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.mylyn/.taskListIndex/segments 2.gen and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.mylyn/.taskListIndex/segments.gen b/bin/main/edu/rpi/legup/.metadata/.mylyn/.taskListIndex/segments.gen deleted file mode 100644 index 63a7ec9a3..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.mylyn/.taskListIndex/segments.gen and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.mylyn/.taskListIndex/segments_1 b/bin/main/edu/rpi/legup/.metadata/.mylyn/.taskListIndex/segments_1 deleted file mode 100644 index adecb0619..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.mylyn/.taskListIndex/segments_1 and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.mylyn/.taskListIndex/segments_1 2 b/bin/main/edu/rpi/legup/.metadata/.mylyn/.taskListIndex/segments_1 2 deleted file mode 100644 index adecb0619..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.mylyn/.taskListIndex/segments_1 2 and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.mylyn/repositories.xml.zip b/bin/main/edu/rpi/legup/.metadata/.mylyn/repositories.xml.zip deleted file mode 100644 index 41acf514c..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.mylyn/repositories.xml.zip and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.mylyn/tasks.xml.zip b/bin/main/edu/rpi/legup/.metadata/.mylyn/tasks.xml.zip deleted file mode 100644 index 3e10bf2b4..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.mylyn/tasks.xml.zip and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history 2.version b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history 2.version deleted file mode 100644 index 25cb955ba..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history 2.version +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version deleted file mode 100644 index 25cb955ba..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties 2.index b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties 2.index deleted file mode 100644 index 7ea794608..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties 2.index and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties 2.version b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties 2.version deleted file mode 100644 index 6b2aaa764..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties 2.version +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index deleted file mode 100644 index 7ea794608..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version deleted file mode 100644 index 6b2aaa764..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree deleted file mode 100644 index 8a1fc9ec5..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core 2.resources b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core 2.resources deleted file mode 100644 index f063e7caf..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core 2.resources and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources deleted file mode 100644 index f063e7caf..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources 2.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources 2.prefs deleted file mode 100644 index dffc6b513..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources 2.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -version=1 diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index dffc6b513..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -version=1 diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui 2.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui 2.prefs deleted file mode 100644 index 1768a1e88..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui 2.prefs +++ /dev/null @@ -1,13 +0,0 @@ -content_assist_proposals_background=255,255,255 -content_assist_proposals_foreground=0,0,0 -eclipse.preferences.version=1 -fontPropagated=true -org.eclipse.jdt.ui.editor.tab.width= -org.eclipse.jdt.ui.formatterprofiles.version=12 -org.eclipse.jdt.ui.javadoclocations.migrated=true -org.eclipse.jface.textfont=1|Monaco|11.0|0|COCOA|1|; -proposalOrderMigrated=true -spelling_locale_initialized=true -tabWidthPropagated=true -useAnnotationsPrefPage=true -useQuickDiffPrefPage=true diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs deleted file mode 100644 index 1768a1e88..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs +++ /dev/null @@ -1,13 +0,0 @@ -content_assist_proposals_background=255,255,255 -content_assist_proposals_foreground=0,0,0 -eclipse.preferences.version=1 -fontPropagated=true -org.eclipse.jdt.ui.editor.tab.width= -org.eclipse.jdt.ui.formatterprofiles.version=12 -org.eclipse.jdt.ui.javadoclocations.migrated=true -org.eclipse.jface.textfont=1|Monaco|11.0|0|COCOA|1|; -proposalOrderMigrated=true -spelling_locale_initialized=true -tabWidthPropagated=true -useAnnotationsPrefPage=true -useQuickDiffPrefPage=true diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.discovery 2.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.discovery 2.prefs deleted file mode 100644 index 67b1d96c9..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.discovery 2.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.m2e.discovery.pref.projects= diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.discovery.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.discovery.prefs deleted file mode 100644 index 67b1d96c9..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.discovery.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.m2e.discovery.pref.projects= diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core 2.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core 2.prefs deleted file mode 100644 index 43e97e405..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core 2.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -mylyn.attention.migrated=true diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core.prefs deleted file mode 100644 index 43e97e405..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -mylyn.attention.migrated=true diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui 2.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui 2.prefs deleted file mode 100644 index 8d462a6cf..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui 2.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui.prefs deleted file mode 100644 index 8d462a6cf..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.tasks.ui 2.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.tasks.ui 2.prefs deleted file mode 100644 index 2b60c21d6..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.tasks.ui 2.prefs +++ /dev/null @@ -1,5 +0,0 @@ -eclipse.preferences.version=1 -migrated.task.repositories.secure.store=true -org.eclipse.mylyn.tasks.ui.filters.nonmatching=true -org.eclipse.mylyn.tasks.ui.filters.nonmatching.encouraged=true -org.eclipse.mylyn.tasks.ui.welcome.message=true diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.tasks.ui.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.tasks.ui.prefs deleted file mode 100644 index 2b60c21d6..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.tasks.ui.prefs +++ /dev/null @@ -1,5 +0,0 @@ -eclipse.preferences.version=1 -migrated.task.repositories.secure.store=true -org.eclipse.mylyn.tasks.ui.filters.nonmatching=true -org.eclipse.mylyn.tasks.ui.filters.nonmatching.encouraged=true -org.eclipse.mylyn.tasks.ui.welcome.message=true diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui 2.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui 2.prefs deleted file mode 100644 index 08076f236..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui 2.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -showIntro=false diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide 2.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide 2.prefs deleted file mode 100644 index da2be0834..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide 2.prefs +++ /dev/null @@ -1,5 +0,0 @@ -PROBLEMS_FILTERS_MIGRATE=true -eclipse.preferences.version=1 -platformState=1554955212164 -quickStart=false -tipsAndTricks=true diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs deleted file mode 100644 index da2be0834..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs +++ /dev/null @@ -1,5 +0,0 @@ -PROBLEMS_FILTERS_MIGRATE=true -eclipse.preferences.version=1 -platformState=1554955212164 -quickStart=false -tipsAndTricks=true diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs deleted file mode 100644 index 08076f236..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -showIntro=false diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench 2.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench 2.prefs deleted file mode 100644 index dd774965c..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench 2.prefs +++ /dev/null @@ -1,3 +0,0 @@ -//org.eclipse.ui.commands/state/org.eclipse.ui.navigator.resources.nested.changeProjectPresentation/org.eclipse.ui.commands.radioState=false -PLUGINS_NOT_ACTIVATED_ON_STARTUP=org.eclipse.m2e.discovery; -eclipse.preferences.version=1 diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs deleted file mode 100644 index dd774965c..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs +++ /dev/null @@ -1,3 +0,0 @@ -//org.eclipse.ui.commands/state/org.eclipse.ui.navigator.resources.nested.changeProjectPresentation/org.eclipse.ui.commands.radioState=false -PLUGINS_NOT_ACTIVATED_ON_STARTUP=org.eclipse.m2e.discovery; -eclipse.preferences.version=1 diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.e4.workbench/workbench 2.xmi b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.e4.workbench/workbench 2.xmi deleted file mode 100644 index 51f42e4ed..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.e4.workbench/workbench 2.xmi +++ /dev/null @@ -1,2308 +0,0 @@ - - - - activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration - ModelMigrationProcessor.001 - - - - - - - - topLevel - - - Minimized - MinimizedByZoom - - - persp.actionSet:org.eclipse.mylyn.doc.actionSet - persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation - persp.actionSet:org.eclipse.ui.cheatsheets.actionSet - persp.actionSet:org.eclipse.search.searchActionSet - persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation - persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation - persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo - persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet - persp.actionSet:org.eclipse.ui.actionSet.keyBindings - persp.actionSet:org.eclipse.ui.actionSet.openFiles - persp.actionSet:org.eclipse.wb.core.ui.actionset - persp.actionSet:org.eclipse.debug.ui.launchActionSet - persp.actionSet:org.eclipse.jdt.ui.JavaActionSet - persp.actionSet:org.eclipse.jdt.ui.JavaElementCreationActionSet - persp.actionSet:org.eclipse.ui.NavigateActionSet - persp.viewSC:org.eclipse.jdt.ui.PackageExplorer - persp.viewSC:org.eclipse.jdt.ui.TypeHierarchy - persp.viewSC:org.eclipse.jdt.ui.SourceView - persp.viewSC:org.eclipse.jdt.ui.JavadocView - persp.viewSC:org.eclipse.search.ui.views.SearchView - persp.viewSC:org.eclipse.ui.console.ConsoleView - persp.viewSC:org.eclipse.ui.views.ContentOutline - persp.viewSC:org.eclipse.ui.views.ProblemView - persp.viewSC:org.eclipse.ui.views.ResourceNavigator - persp.viewSC:org.eclipse.ui.views.TaskList - persp.viewSC:org.eclipse.ui.views.ProgressView - persp.viewSC:org.eclipse.ui.navigator.ProjectExplorer - persp.viewSC:org.eclipse.ui.texteditor.TemplatesView - persp.viewSC:org.eclipse.pde.runtime.LogView - persp.newWizSC:org.eclipse.jdt.ui.wizards.JavaProjectWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewPackageCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewClassCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewInterfaceCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewEnumCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewAnnotationCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewSourceFolderCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewSnippetFileCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewJavaWorkingSetWizard - persp.newWizSC:org.eclipse.ui.wizards.new.folder - persp.newWizSC:org.eclipse.ui.wizards.new.file - persp.newWizSC:org.eclipse.ui.editors.wizards.UntitledTextFileWizard - persp.perspSC:org.eclipse.jdt.ui.JavaBrowsingPerspective - persp.perspSC:org.eclipse.debug.ui.DebugPerspective - persp.perspSC:com.android.ide.eclipse.ddms.Perspective - persp.viewSC:org.eclipse.ant.ui.views.AntView - persp.actionSet:org.eclipse.eclemma.ui.CoverageActionSet - persp.showIn:org.eclipse.eclemma.ui.CoverageView - persp.showIn:org.eclipse.egit.ui.RepositoriesView - persp.actionSet:org.eclipse.debug.ui.breakpointActionSet - persp.actionSet:org.eclipse.jdt.debug.ui.JDTDebugActionSet - persp.newWizSC:org.eclipse.jdt.junit.wizards.NewTestCaseCreationWizard - persp.actionSet:org.eclipse.jdt.junit.JUnitActionSet - persp.showIn:org.eclipse.jdt.ui.PackageExplorer - persp.showIn:org.eclipse.team.ui.GenericHistoryView - persp.showIn:org.eclipse.ui.views.ResourceNavigator - persp.showIn:org.eclipse.ui.navigator.ProjectExplorer - persp.viewSC:org.eclipse.mylyn.tasks.ui.views.tasks - persp.newWizSC:org.eclipse.mylyn.tasks.ui.wizards.new.repository.task - persp.viewSC:org.eclipse.wb.core.StructureView - persp.viewSC:org.eclipse.wb.core.PaletteView - - - - org.eclipse.e4.primaryNavigationStack - - - - - - - - - - - - - - - - - - - - - org.eclipse.e4.secondaryNavigationStack - - - - - - - - org.eclipse.e4.secondaryDataStack - - - - - - - - - - - - - - active - Maximized - - - - - - - View - categoryTag:Help - - - - View - categoryTag:General - active - activeOnClose - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:Help - - - - org.eclipse.e4.primaryDataStack - EditorStack - - - - - View - categoryTag:Java - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:Java - - - View - categoryTag:General - - - View - categoryTag:General - - - - View - categoryTag:General - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - - View - categoryTag:General - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:General - - - View - categoryTag:Ant - - - View - categoryTag:Git - - - View - categoryTag:Java - - - - View - categoryTag:Mylyn - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:WindowBuilder - - - View - categoryTag:WindowBuilder - - - - toolbarSeparator - - - - Draggable - - - - toolbarSeparator - - - - Draggable - - - Draggable - - - Draggable - - - toolbarSeparator - - - - Draggable - - - - toolbarSeparator - - - - toolbarSeparator - - - - Draggable - - - stretch - SHOW_RESTORE_MENU - - - Draggable - HIDEABLE - SHOW_RESTORE_MENU - - - - - stretch - - - Draggable - - - Draggable - - - - - - TrimStack - - - - - - - - - - - - - - - - - - - - - platform:cocoa - - - platform:cocoa - - - - - - - - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - - - - - - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - - - - - - - - platform:cocoa - - - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - - - - - platform:cocoa - - - - - - platform:cocoa - - - - platform:cocoa - - - - - - - - - - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - - - - platform:cocoa - - - - - - - - - - - - - platform:cocoa - - - - - - - - platform:cocoa - - - - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - - - - - - - - - - - - platform:cocoa - - - platform:cocoa - - - - - - - platform:cocoa - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - platform:cocoa - - - - platform:cocoa - - - - - - - platform:cocoa - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Editor - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Tracer for OpenGL ES - - - View - categoryTag:Tracer for OpenGL ES - - - View - categoryTag:Tracer for OpenGL ES - - - View - categoryTag:Ant - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Java - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:General - - - View - categoryTag:Help - - - View - categoryTag:Debug - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java - - - View - categoryTag:General - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:Maven - - - View - categoryTag:Maven - - - View - categoryTag:Mylyn - - - View - categoryTag:Mylyn - - - View - categoryTag:Mylyn - - - View - categoryTag:Mylyn - - - View - categoryTag:Oomph - - - View - categoryTag:Code Recommenders - - - View - categoryTag:Code Recommenders - - - View - categoryTag:Code Recommenders - - - View - categoryTag:Code Recommenders - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:Team - - - View - categoryTag:Team - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:Help - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:WindowBuilder - - - View - categoryTag:WindowBuilder - - - View - categoryTag:General - - - View - categoryTag:XML - - - View - categoryTag:XML - - - - glue - move_after:PerspectiveSpacer - SHOW_RESTORE_MENU - - - move_after:Spacer Glue - HIDEABLE - SHOW_RESTORE_MENU - - - glue - move_after:SearchField - SHOW_RESTORE_MENU - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi deleted file mode 100644 index 51f42e4ed..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi +++ /dev/null @@ -1,2308 +0,0 @@ - - - - activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration - ModelMigrationProcessor.001 - - - - - - - - topLevel - - - Minimized - MinimizedByZoom - - - persp.actionSet:org.eclipse.mylyn.doc.actionSet - persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation - persp.actionSet:org.eclipse.ui.cheatsheets.actionSet - persp.actionSet:org.eclipse.search.searchActionSet - persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation - persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation - persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo - persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet - persp.actionSet:org.eclipse.ui.actionSet.keyBindings - persp.actionSet:org.eclipse.ui.actionSet.openFiles - persp.actionSet:org.eclipse.wb.core.ui.actionset - persp.actionSet:org.eclipse.debug.ui.launchActionSet - persp.actionSet:org.eclipse.jdt.ui.JavaActionSet - persp.actionSet:org.eclipse.jdt.ui.JavaElementCreationActionSet - persp.actionSet:org.eclipse.ui.NavigateActionSet - persp.viewSC:org.eclipse.jdt.ui.PackageExplorer - persp.viewSC:org.eclipse.jdt.ui.TypeHierarchy - persp.viewSC:org.eclipse.jdt.ui.SourceView - persp.viewSC:org.eclipse.jdt.ui.JavadocView - persp.viewSC:org.eclipse.search.ui.views.SearchView - persp.viewSC:org.eclipse.ui.console.ConsoleView - persp.viewSC:org.eclipse.ui.views.ContentOutline - persp.viewSC:org.eclipse.ui.views.ProblemView - persp.viewSC:org.eclipse.ui.views.ResourceNavigator - persp.viewSC:org.eclipse.ui.views.TaskList - persp.viewSC:org.eclipse.ui.views.ProgressView - persp.viewSC:org.eclipse.ui.navigator.ProjectExplorer - persp.viewSC:org.eclipse.ui.texteditor.TemplatesView - persp.viewSC:org.eclipse.pde.runtime.LogView - persp.newWizSC:org.eclipse.jdt.ui.wizards.JavaProjectWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewPackageCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewClassCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewInterfaceCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewEnumCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewAnnotationCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewSourceFolderCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewSnippetFileCreationWizard - persp.newWizSC:org.eclipse.jdt.ui.wizards.NewJavaWorkingSetWizard - persp.newWizSC:org.eclipse.ui.wizards.new.folder - persp.newWizSC:org.eclipse.ui.wizards.new.file - persp.newWizSC:org.eclipse.ui.editors.wizards.UntitledTextFileWizard - persp.perspSC:org.eclipse.jdt.ui.JavaBrowsingPerspective - persp.perspSC:org.eclipse.debug.ui.DebugPerspective - persp.perspSC:com.android.ide.eclipse.ddms.Perspective - persp.viewSC:org.eclipse.ant.ui.views.AntView - persp.actionSet:org.eclipse.eclemma.ui.CoverageActionSet - persp.showIn:org.eclipse.eclemma.ui.CoverageView - persp.showIn:org.eclipse.egit.ui.RepositoriesView - persp.actionSet:org.eclipse.debug.ui.breakpointActionSet - persp.actionSet:org.eclipse.jdt.debug.ui.JDTDebugActionSet - persp.newWizSC:org.eclipse.jdt.junit.wizards.NewTestCaseCreationWizard - persp.actionSet:org.eclipse.jdt.junit.JUnitActionSet - persp.showIn:org.eclipse.jdt.ui.PackageExplorer - persp.showIn:org.eclipse.team.ui.GenericHistoryView - persp.showIn:org.eclipse.ui.views.ResourceNavigator - persp.showIn:org.eclipse.ui.navigator.ProjectExplorer - persp.viewSC:org.eclipse.mylyn.tasks.ui.views.tasks - persp.newWizSC:org.eclipse.mylyn.tasks.ui.wizards.new.repository.task - persp.viewSC:org.eclipse.wb.core.StructureView - persp.viewSC:org.eclipse.wb.core.PaletteView - - - - org.eclipse.e4.primaryNavigationStack - - - - - - - - - - - - - - - - - - - - - org.eclipse.e4.secondaryNavigationStack - - - - - - - - org.eclipse.e4.secondaryDataStack - - - - - - - - - - - - - - active - Maximized - - - - - - - View - categoryTag:Help - - - - View - categoryTag:General - active - activeOnClose - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:Help - - - - org.eclipse.e4.primaryDataStack - EditorStack - - - - - View - categoryTag:Java - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:Java - - - View - categoryTag:General - - - View - categoryTag:General - - - - View - categoryTag:General - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - - View - categoryTag:General - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:General - - - View - categoryTag:Ant - - - View - categoryTag:Git - - - View - categoryTag:Java - - - - View - categoryTag:Mylyn - - ViewMenu - menuContribution:menu - - - - - View - categoryTag:WindowBuilder - - - View - categoryTag:WindowBuilder - - - - toolbarSeparator - - - - Draggable - - - - toolbarSeparator - - - - Draggable - - - Draggable - - - Draggable - - - toolbarSeparator - - - - Draggable - - - - toolbarSeparator - - - - toolbarSeparator - - - - Draggable - - - stretch - SHOW_RESTORE_MENU - - - Draggable - HIDEABLE - SHOW_RESTORE_MENU - - - - - stretch - - - Draggable - - - Draggable - - - - - - TrimStack - - - - - - - - - - - - - - - - - - - - - platform:cocoa - - - platform:cocoa - - - - - - - - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - - - - - - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - - - - - - - - platform:cocoa - - - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - - - platform:cocoa - - - - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - - - - - platform:cocoa - - - - - - platform:cocoa - - - - platform:cocoa - - - - - - - - - - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - platform:cocoa - - - - - - - - platform:cocoa - - - - - - - - - - - - - platform:cocoa - - - - - - - - platform:cocoa - - - - - - - platform:cocoa - - - platform:cocoa - - - - platform:cocoa - - - - - - - - - - - - - - - platform:cocoa - - - platform:cocoa - - - - - - - platform:cocoa - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - platform:cocoa - - - - platform:cocoa - - - - - - - platform:cocoa - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Editor - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Android - - - View - categoryTag:Tracer for OpenGL ES - - - View - categoryTag:Tracer for OpenGL ES - - - View - categoryTag:Tracer for OpenGL ES - - - View - categoryTag:Ant - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:Java - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:Git - - - View - categoryTag:General - - - View - categoryTag:Help - - - View - categoryTag:Debug - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java Browsing - - - View - categoryTag:Java - - - View - categoryTag:General - - - View - categoryTag:Java - - - View - categoryTag:Java - - - View - categoryTag:Maven - - - View - categoryTag:Maven - - - View - categoryTag:Mylyn - - - View - categoryTag:Mylyn - - - View - categoryTag:Mylyn - - - View - categoryTag:Mylyn - - - View - categoryTag:Oomph - - - View - categoryTag:Code Recommenders - - - View - categoryTag:Code Recommenders - - - View - categoryTag:Code Recommenders - - - View - categoryTag:Code Recommenders - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:Team - - - View - categoryTag:Team - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:Help - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:WindowBuilder - - - View - categoryTag:WindowBuilder - - - View - categoryTag:General - - - View - categoryTag:XML - - - View - categoryTag:XML - - - - glue - move_after:PerspectiveSpacer - SHOW_RESTORE_MENU - - - move_after:Spacer Glue - HIDEABLE - SHOW_RESTORE_MENU - - - glue - move_after:SearchField - SHOW_RESTORE_MENU - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fdt b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fdt deleted file mode 100644 index d5abf41cc..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fdt and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fdx b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fdx deleted file mode 100644 index b8ee80957..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fdx and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fnm b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fnm deleted file mode 100644 index 523c92e25..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.fnm +++ /dev/null @@ -1 +0,0 @@ -ýÿÿÿversion \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.frq b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.frq deleted file mode 100644 index e69de29bb..000000000 diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.nrm b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.nrm deleted file mode 100644 index cf8dc7529..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.nrm +++ /dev/null @@ -1 +0,0 @@ -NRMÿ \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.tii b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.tii deleted file mode 100644 index ebd518d6e..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.tii and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.tis b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.tis deleted file mode 100644 index ebd518d6e..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0 2.tis and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fdt b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fdt deleted file mode 100644 index d5abf41cc..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fdt and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fdx b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fdx deleted file mode 100644 index b8ee80957..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fdx and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fnm b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fnm deleted file mode 100644 index 523c92e25..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.fnm +++ /dev/null @@ -1 +0,0 @@ -ýÿÿÿversion \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.frq b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.frq deleted file mode 100644 index e69de29bb..000000000 diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.nrm b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.nrm deleted file mode 100644 index cf8dc7529..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.nrm +++ /dev/null @@ -1 +0,0 @@ -NRMÿ \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.tii b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.tii deleted file mode 100644 index ebd518d6e..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.tii and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.tis b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.tis deleted file mode 100644 index ebd518d6e..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/_0.tis and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments 2.gen b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments 2.gen deleted file mode 100644 index 63a7ec9a3..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments 2.gen and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments.gen b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments.gen deleted file mode 100644 index 63a7ec9a3..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments.gen and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments_1 b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments_1 deleted file mode 100644 index 4f495c834..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments_1 and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments_1 2 b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments_1 2 deleted file mode 100644 index 4f495c834..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/history/segments_1 2 and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0 2.fdt b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0 2.fdt deleted file mode 100644 index d5abf41cc..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0 2.fdt and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fdt b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fdt deleted file mode 100644 index d5abf41cc..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fdt and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fdx b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fdx deleted file mode 100644 index b8ee80957..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fdx and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fnm b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fnm deleted file mode 100644 index 523c92e25..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.fnm +++ /dev/null @@ -1 +0,0 @@ -ýÿÿÿversion \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.frq b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.frq deleted file mode 100644 index e69de29bb..000000000 diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.nrm b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.nrm deleted file mode 100644 index cf8dc7529..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.nrm +++ /dev/null @@ -1 +0,0 @@ -NRMÿ \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.tii b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.tii deleted file mode 100644 index ebd518d6e..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.tii and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.tis b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.tis deleted file mode 100644 index ebd518d6e..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/_0.tis and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/segments.gen b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/segments.gen deleted file mode 100644 index 63a7ec9a3..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/segments.gen and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/segments_1 b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/segments_1 deleted file mode 100644 index 4f495c834..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.epp.logging.aeri.ui/remote-index/segments_1 and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache deleted file mode 100644 index 593f4708d..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache 2 b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache 2 deleted file mode 100644 index 593f4708d..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache 2 and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/externalFilesCache b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/externalFilesCache deleted file mode 100644 index 593f4708d..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/externalFilesCache and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache deleted file mode 100644 index 593f4708d..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat deleted file mode 100644 index 0edae4b20..000000000 Binary files a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat and /dev/null differ diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory 2.xml b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory 2.xml deleted file mode 100644 index a4ee3cbc9..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory 2.xml +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml deleted file mode 100644 index a4ee3cbc9..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml deleted file mode 100644 index 9e390f501..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml index 231c2cfed..0bf6a8c76 100644 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml +++ b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml @@ -1,10 +1,11 @@
-
- - - - - -
+
+ + + + + +
diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.m2e.logback.configuration/0 2.log b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.m2e.logback.configuration/0 2.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.m2e.logback.configuration/0.log b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.m2e.logback.configuration/0.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032 2.xml b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032 2.xml deleted file mode 100644 index e33758c3a..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032 2.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - %date [%thread] %-5level %logger{35} - %msg%n - - - OFF - - - - - ${org.eclipse.m2e.log.dir}/0.log - - ${org.eclipse.m2e.log.dir}/%i.log - 1 - 10 - - - 100MB - - - %date [%thread] %-5level %logger{35} - %msg%n - - - - - - WARN - - - - - - - - - - - - - - - diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032.xml b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032.xml index e33758c3a..63d411340 100644 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032.xml +++ b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.6.0.20150526-2032.xml @@ -1,43 +1,43 @@ - - - %date [%thread] %-5level %logger{35} - %msg%n - - - OFF - - + + + %date [%thread] %-5level %logger{35} - %msg%n + + + OFF + + - - ${org.eclipse.m2e.log.dir}/0.log - - ${org.eclipse.m2e.log.dir}/%i.log - 1 - 10 - - - 100MB - - - %date [%thread] %-5level %logger{35} - %msg%n - - + + ${org.eclipse.m2e.log.dir}/0.log + + ${org.eclipse.m2e.log.dir}/%i.log + 1 + 10 + + + 100MB + + + %date [%thread] %-5level %logger{35} - %msg%n + + - - - WARN - - + + + WARN + + - - - - - - - - - + + - + + + + + + + + diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.oomph.setup/workspace 2.setup b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.oomph.setup/workspace 2.setup deleted file mode 100644 index 1f73e14c1..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.oomph.setup/workspace 2.setup +++ /dev/null @@ -1,6 +0,0 @@ - - diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.oomph.setup/workspace.setup b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.oomph.setup/workspace.setup deleted file mode 100644 index 1f73e14c1..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.oomph.setup/workspace.setup +++ /dev/null @@ -1,6 +0,0 @@ - - diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings 2.xml b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings 2.xml deleted file mode 100644 index a033ea971..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings 2.xml +++ /dev/null @@ -1,11 +0,0 @@ - -
-
- - -
-
- - -
-
diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml index a033ea971..c00d6ca9e 100644 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml +++ b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml @@ -1,11 +1,11 @@
-
- - -
-
- - -
+
+ + +
+
+ + +
diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings 2.xml b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings 2.xml deleted file mode 100644 index 851c296e6..000000000 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings 2.xml +++ /dev/null @@ -1,15 +0,0 @@ - -
-
- - - - - - - - - - -
-
diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml index 851c296e6..d2ff1eed0 100644 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml +++ b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml @@ -1,15 +1,15 @@
-
- - - - - - - - - - -
+
+ + + + + + + + + + +
diff --git a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml index 3f804cad8..5e61d80ea 100644 --- a/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml +++ b/bin/main/edu/rpi/legup/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml @@ -1,4 +1,5 @@ - + \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/.metadata/version.ini b/bin/main/edu/rpi/legup/.metadata/version.ini deleted file mode 100644 index 026f9536e..000000000 --- a/bin/main/edu/rpi/legup/.metadata/version.ini +++ /dev/null @@ -1,3 +0,0 @@ -#Tue Oct 29 22:17:24 EDT 2019 -org.eclipse.core.runtime=2 -org.eclipse.platform=4.5.2.v20160212-1500 diff --git a/bin/main/edu/rpi/legup/Legup 2.class b/bin/main/edu/rpi/legup/Legup 2.class deleted file mode 100644 index 661df85e6..000000000 Binary files a/bin/main/edu/rpi/legup/Legup 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/Legup.class b/bin/main/edu/rpi/legup/Legup.class deleted file mode 100644 index 661df85e6..000000000 Binary files a/bin/main/edu/rpi/legup/Legup.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/VERSION b/bin/main/edu/rpi/legup/VERSION deleted file mode 100644 index afa2b3515..000000000 --- a/bin/main/edu/rpi/legup/VERSION +++ /dev/null @@ -1 +0,0 @@ -1.8.0 \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/ai/Solver 2.class b/bin/main/edu/rpi/legup/ai/Solver 2.class deleted file mode 100644 index 9605704ec..000000000 Binary files a/bin/main/edu/rpi/legup/ai/Solver 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/ai/Solver.class b/bin/main/edu/rpi/legup/ai/Solver.class deleted file mode 100644 index 9605704ec..000000000 Binary files a/bin/main/edu/rpi/legup/ai/Solver.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/app/Config 2.class b/bin/main/edu/rpi/legup/app/Config 2.class deleted file mode 100644 index 22acbc475..000000000 Binary files a/bin/main/edu/rpi/legup/app/Config 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/app/Config.class b/bin/main/edu/rpi/legup/app/Config.class deleted file mode 100644 index 22acbc475..000000000 Binary files a/bin/main/edu/rpi/legup/app/Config.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/app/GameBoardFacade 2.class b/bin/main/edu/rpi/legup/app/GameBoardFacade 2.class deleted file mode 100644 index 9789bddde..000000000 Binary files a/bin/main/edu/rpi/legup/app/GameBoardFacade 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/app/GameBoardFacade.class b/bin/main/edu/rpi/legup/app/GameBoardFacade.class deleted file mode 100644 index 9789bddde..000000000 Binary files a/bin/main/edu/rpi/legup/app/GameBoardFacade.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/app/InvalidConfigException 2.class b/bin/main/edu/rpi/legup/app/InvalidConfigException 2.class deleted file mode 100644 index ad12382a9..000000000 Binary files a/bin/main/edu/rpi/legup/app/InvalidConfigException 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/app/InvalidConfigException.class b/bin/main/edu/rpi/legup/app/InvalidConfigException.class deleted file mode 100644 index ad12382a9..000000000 Binary files a/bin/main/edu/rpi/legup/app/InvalidConfigException.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/app/LegupPreferences 2.class b/bin/main/edu/rpi/legup/app/LegupPreferences 2.class deleted file mode 100644 index b0896c7c2..000000000 Binary files a/bin/main/edu/rpi/legup/app/LegupPreferences 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/app/LegupPreferences.class b/bin/main/edu/rpi/legup/app/LegupPreferences.class deleted file mode 100644 index b0896c7c2..000000000 Binary files a/bin/main/edu/rpi/legup/app/LegupPreferences.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/app/PuzzleKeyAccelerator 2.class b/bin/main/edu/rpi/legup/app/PuzzleKeyAccelerator 2.class deleted file mode 100644 index 6dcf3a486..000000000 Binary files a/bin/main/edu/rpi/legup/app/PuzzleKeyAccelerator 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/app/PuzzleKeyAccelerator.class b/bin/main/edu/rpi/legup/app/PuzzleKeyAccelerator.class deleted file mode 100644 index 6dcf3a486..000000000 Binary files a/bin/main/edu/rpi/legup/app/PuzzleKeyAccelerator.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/controller/BoardController 2.class b/bin/main/edu/rpi/legup/controller/BoardController 2.class deleted file mode 100644 index a2c19eddf..000000000 Binary files a/bin/main/edu/rpi/legup/controller/BoardController 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/controller/BoardController.class b/bin/main/edu/rpi/legup/controller/BoardController.class deleted file mode 100644 index a2c19eddf..000000000 Binary files a/bin/main/edu/rpi/legup/controller/BoardController.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/controller/Controller 2.class b/bin/main/edu/rpi/legup/controller/Controller 2.class deleted file mode 100644 index 3ee1bc088..000000000 Binary files a/bin/main/edu/rpi/legup/controller/Controller 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/controller/Controller.class b/bin/main/edu/rpi/legup/controller/Controller.class deleted file mode 100644 index 3ee1bc088..000000000 Binary files a/bin/main/edu/rpi/legup/controller/Controller.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/controller/ElementController 2.class b/bin/main/edu/rpi/legup/controller/ElementController 2.class deleted file mode 100644 index 8c24aa9e9..000000000 Binary files a/bin/main/edu/rpi/legup/controller/ElementController 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/controller/ElementController.class b/bin/main/edu/rpi/legup/controller/ElementController.class deleted file mode 100644 index 8c24aa9e9..000000000 Binary files a/bin/main/edu/rpi/legup/controller/ElementController.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/controller/RuleController 2.class b/bin/main/edu/rpi/legup/controller/RuleController 2.class deleted file mode 100644 index 02d4f93ff..000000000 Binary files a/bin/main/edu/rpi/legup/controller/RuleController 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/controller/RuleController.class b/bin/main/edu/rpi/legup/controller/RuleController.class deleted file mode 100644 index 02d4f93ff..000000000 Binary files a/bin/main/edu/rpi/legup/controller/RuleController.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/controller/ToolbarController 2.class b/bin/main/edu/rpi/legup/controller/ToolbarController 2.class deleted file mode 100644 index defe98167..000000000 Binary files a/bin/main/edu/rpi/legup/controller/ToolbarController 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/controller/ToolbarController.class b/bin/main/edu/rpi/legup/controller/ToolbarController.class deleted file mode 100644 index defe98167..000000000 Binary files a/bin/main/edu/rpi/legup/controller/ToolbarController.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/controller/TreeController 2.class b/bin/main/edu/rpi/legup/controller/TreeController 2.class deleted file mode 100644 index e083f781d..000000000 Binary files a/bin/main/edu/rpi/legup/controller/TreeController 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/controller/TreeController.class b/bin/main/edu/rpi/legup/controller/TreeController.class deleted file mode 100644 index e083f781d..000000000 Binary files a/bin/main/edu/rpi/legup/controller/TreeController.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/LICENSE 2.txt b/bin/main/edu/rpi/legup/fonts/Roboto/LICENSE 2.txt deleted file mode 100644 index d64569567..000000000 --- a/bin/main/edu/rpi/legup/fonts/Roboto/LICENSE 2.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/LICENSE.txt b/bin/main/edu/rpi/legup/fonts/Roboto/LICENSE.txt deleted file mode 100644 index d64569567..000000000 --- a/bin/main/edu/rpi/legup/fonts/Roboto/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Black 2.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Black 2.ttf deleted file mode 100644 index 689fe5cb3..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Black 2.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Black.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Black.ttf deleted file mode 100644 index 689fe5cb3..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Black.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-BlackItalic 2.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-BlackItalic 2.ttf deleted file mode 100644 index 0b4e0ee10..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-BlackItalic 2.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-BlackItalic.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-BlackItalic.ttf deleted file mode 100644 index 0b4e0ee10..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-BlackItalic.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Bold 2.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Bold 2.ttf deleted file mode 100644 index d3f01ad24..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Bold 2.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Bold.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Bold.ttf deleted file mode 100644 index d3f01ad24..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Bold.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-BoldItalic 2.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-BoldItalic 2.ttf deleted file mode 100644 index 41cc1e753..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-BoldItalic 2.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-BoldItalic.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-BoldItalic.ttf deleted file mode 100644 index 41cc1e753..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-BoldItalic.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Italic 2.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Italic 2.ttf deleted file mode 100644 index 6a1cee5b2..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Italic 2.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Italic.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Italic.ttf deleted file mode 100644 index 6a1cee5b2..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Italic.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Light 2.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Light 2.ttf deleted file mode 100644 index 219063a57..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Light 2.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Light.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Light.ttf deleted file mode 100644 index 219063a57..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Light.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-LightItalic 2.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-LightItalic 2.ttf deleted file mode 100644 index 0e81e876f..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-LightItalic 2.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-LightItalic.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-LightItalic.ttf deleted file mode 100644 index 0e81e876f..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-LightItalic.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Medium 2.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Medium 2.ttf deleted file mode 100644 index 1a7f3b0bb..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Medium 2.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Medium.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Medium.ttf deleted file mode 100644 index 1a7f3b0bb..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Medium.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-MediumItalic 2.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-MediumItalic 2.ttf deleted file mode 100644 index 003029527..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-MediumItalic 2.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-MediumItalic.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-MediumItalic.ttf deleted file mode 100644 index 003029527..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-MediumItalic.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Regular 2.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Regular 2.ttf deleted file mode 100644 index 2c97eeadf..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Regular 2.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Regular.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Regular.ttf deleted file mode 100644 index 2c97eeadf..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Regular.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Thin 2.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Thin 2.ttf deleted file mode 100644 index b74a4fd1a..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Thin 2.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Thin.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Thin.ttf deleted file mode 100644 index b74a4fd1a..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-Thin.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-ThinItalic 2.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-ThinItalic 2.ttf deleted file mode 100644 index dd0ddb852..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-ThinItalic 2.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-ThinItalic.ttf b/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-ThinItalic.ttf deleted file mode 100644 index dd0ddb852..000000000 Binary files a/bin/main/edu/rpi/legup/fonts/Roboto/Roboto-ThinItalic.ttf and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/AddTreeElementCommand 2.class b/bin/main/edu/rpi/legup/history/AddTreeElementCommand 2.class deleted file mode 100644 index 0a5b603d8..000000000 Binary files a/bin/main/edu/rpi/legup/history/AddTreeElementCommand 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/AddTreeElementCommand.class b/bin/main/edu/rpi/legup/history/AddTreeElementCommand.class deleted file mode 100644 index 0a5b603d8..000000000 Binary files a/bin/main/edu/rpi/legup/history/AddTreeElementCommand.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/ApplyDefaultBasicRuleCommand 2.class b/bin/main/edu/rpi/legup/history/ApplyDefaultBasicRuleCommand 2.class deleted file mode 100644 index 8c173846d..000000000 Binary files a/bin/main/edu/rpi/legup/history/ApplyDefaultBasicRuleCommand 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/ApplyDefaultBasicRuleCommand.class b/bin/main/edu/rpi/legup/history/ApplyDefaultBasicRuleCommand.class deleted file mode 100644 index 8c173846d..000000000 Binary files a/bin/main/edu/rpi/legup/history/ApplyDefaultBasicRuleCommand.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/AutoCaseRuleCommand 2.class b/bin/main/edu/rpi/legup/history/AutoCaseRuleCommand 2.class deleted file mode 100644 index 7ef37dfab..000000000 Binary files a/bin/main/edu/rpi/legup/history/AutoCaseRuleCommand 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/AutoCaseRuleCommand.class b/bin/main/edu/rpi/legup/history/AutoCaseRuleCommand.class deleted file mode 100644 index 7ef37dfab..000000000 Binary files a/bin/main/edu/rpi/legup/history/AutoCaseRuleCommand.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/CommandError 2.class b/bin/main/edu/rpi/legup/history/CommandError 2.class deleted file mode 100644 index 53c753bd9..000000000 Binary files a/bin/main/edu/rpi/legup/history/CommandError 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/CommandError.class b/bin/main/edu/rpi/legup/history/CommandError.class deleted file mode 100644 index 53c753bd9..000000000 Binary files a/bin/main/edu/rpi/legup/history/CommandError.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/CommandState 2.class b/bin/main/edu/rpi/legup/history/CommandState 2.class deleted file mode 100644 index f63248d27..000000000 Binary files a/bin/main/edu/rpi/legup/history/CommandState 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/CommandState.class b/bin/main/edu/rpi/legup/history/CommandState.class deleted file mode 100644 index f63248d27..000000000 Binary files a/bin/main/edu/rpi/legup/history/CommandState.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/DeleteTreeElementCommand 2.class b/bin/main/edu/rpi/legup/history/DeleteTreeElementCommand 2.class deleted file mode 100644 index 3111233a1..000000000 Binary files a/bin/main/edu/rpi/legup/history/DeleteTreeElementCommand 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/DeleteTreeElementCommand.class b/bin/main/edu/rpi/legup/history/DeleteTreeElementCommand.class deleted file mode 100644 index 3111233a1..000000000 Binary files a/bin/main/edu/rpi/legup/history/DeleteTreeElementCommand.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/EditDataCommand 2.class b/bin/main/edu/rpi/legup/history/EditDataCommand 2.class deleted file mode 100644 index 9158893b6..000000000 Binary files a/bin/main/edu/rpi/legup/history/EditDataCommand 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/EditDataCommand.class b/bin/main/edu/rpi/legup/history/EditDataCommand.class deleted file mode 100644 index 9158893b6..000000000 Binary files a/bin/main/edu/rpi/legup/history/EditDataCommand.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/History 2.class b/bin/main/edu/rpi/legup/history/History 2.class deleted file mode 100644 index 090d361fb..000000000 Binary files a/bin/main/edu/rpi/legup/history/History 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/History.class b/bin/main/edu/rpi/legup/history/History.class deleted file mode 100644 index 090d361fb..000000000 Binary files a/bin/main/edu/rpi/legup/history/History.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/ICommand 2.class b/bin/main/edu/rpi/legup/history/ICommand 2.class deleted file mode 100644 index 4a0ba3bc4..000000000 Binary files a/bin/main/edu/rpi/legup/history/ICommand 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/ICommand.class b/bin/main/edu/rpi/legup/history/ICommand.class deleted file mode 100644 index 4a0ba3bc4..000000000 Binary files a/bin/main/edu/rpi/legup/history/ICommand.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/IHistoryListener 2.class b/bin/main/edu/rpi/legup/history/IHistoryListener 2.class deleted file mode 100644 index 0859a0c91..000000000 Binary files a/bin/main/edu/rpi/legup/history/IHistoryListener 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/IHistoryListener.class b/bin/main/edu/rpi/legup/history/IHistoryListener.class deleted file mode 100644 index 0859a0c91..000000000 Binary files a/bin/main/edu/rpi/legup/history/IHistoryListener.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/IHistorySubject 2.class b/bin/main/edu/rpi/legup/history/IHistorySubject 2.class deleted file mode 100644 index 1c119de4d..000000000 Binary files a/bin/main/edu/rpi/legup/history/IHistorySubject 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/IHistorySubject.class b/bin/main/edu/rpi/legup/history/IHistorySubject.class deleted file mode 100644 index 1c119de4d..000000000 Binary files a/bin/main/edu/rpi/legup/history/IHistorySubject.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/InvalidCommandStateTransition 2.class b/bin/main/edu/rpi/legup/history/InvalidCommandStateTransition 2.class deleted file mode 100644 index 87202e16e..000000000 Binary files a/bin/main/edu/rpi/legup/history/InvalidCommandStateTransition 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/InvalidCommandStateTransition.class b/bin/main/edu/rpi/legup/history/InvalidCommandStateTransition.class deleted file mode 100644 index 87202e16e..000000000 Binary files a/bin/main/edu/rpi/legup/history/InvalidCommandStateTransition.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/MergeCommand 2.class b/bin/main/edu/rpi/legup/history/MergeCommand 2.class deleted file mode 100644 index 328f51f02..000000000 Binary files a/bin/main/edu/rpi/legup/history/MergeCommand 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/MergeCommand.class b/bin/main/edu/rpi/legup/history/MergeCommand.class deleted file mode 100644 index 328f51f02..000000000 Binary files a/bin/main/edu/rpi/legup/history/MergeCommand.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/PuzzleCommand 2.class b/bin/main/edu/rpi/legup/history/PuzzleCommand 2.class deleted file mode 100644 index 8166d6c4c..000000000 Binary files a/bin/main/edu/rpi/legup/history/PuzzleCommand 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/PuzzleCommand.class b/bin/main/edu/rpi/legup/history/PuzzleCommand.class deleted file mode 100644 index 8166d6c4c..000000000 Binary files a/bin/main/edu/rpi/legup/history/PuzzleCommand.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/ValidateBasicRuleCommand 2.class b/bin/main/edu/rpi/legup/history/ValidateBasicRuleCommand 2.class deleted file mode 100644 index 77d8a89dd..000000000 Binary files a/bin/main/edu/rpi/legup/history/ValidateBasicRuleCommand 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/ValidateBasicRuleCommand.class b/bin/main/edu/rpi/legup/history/ValidateBasicRuleCommand.class deleted file mode 100644 index 77d8a89dd..000000000 Binary files a/bin/main/edu/rpi/legup/history/ValidateBasicRuleCommand.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/ValidateCaseRuleCommand 2.class b/bin/main/edu/rpi/legup/history/ValidateCaseRuleCommand 2.class deleted file mode 100644 index 99fbb5a4a..000000000 Binary files a/bin/main/edu/rpi/legup/history/ValidateCaseRuleCommand 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/ValidateCaseRuleCommand.class b/bin/main/edu/rpi/legup/history/ValidateCaseRuleCommand.class deleted file mode 100644 index 99fbb5a4a..000000000 Binary files a/bin/main/edu/rpi/legup/history/ValidateCaseRuleCommand.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/ValidateContradictionRuleCommand 2.class b/bin/main/edu/rpi/legup/history/ValidateContradictionRuleCommand 2.class deleted file mode 100644 index ec07223e7..000000000 Binary files a/bin/main/edu/rpi/legup/history/ValidateContradictionRuleCommand 2.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/history/ValidateContradictionRuleCommand.class b/bin/main/edu/rpi/legup/history/ValidateContradictionRuleCommand.class deleted file mode 100644 index ec07223e7..000000000 Binary files a/bin/main/edu/rpi/legup/history/ValidateContradictionRuleCommand.class and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/AddChild 2.png b/bin/main/edu/rpi/legup/images/Legup/AddChild 2.png deleted file mode 100644 index 2a411cddd..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/AddChild 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/AddChild.png b/bin/main/edu/rpi/legup/images/Legup/AddChild.png deleted file mode 100644 index 2a411cddd..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/AddChild.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/AddRegion 2.png b/bin/main/edu/rpi/legup/images/Legup/AddRegion 2.png deleted file mode 100644 index 4daa1aa0c..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/AddRegion 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/AddRegion.png b/bin/main/edu/rpi/legup/images/Legup/AddRegion.png deleted file mode 100644 index 4daa1aa0c..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/AddRegion.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Annotations 2.png b/bin/main/edu/rpi/legup/images/Legup/Annotations 2.png deleted file mode 100644 index b9b9a1234..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Annotations 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Annotations.png b/bin/main/edu/rpi/legup/images/Legup/Annotations.png deleted file mode 100644 index b9b9a1234..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Annotations.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Basic Rules 2.gif b/bin/main/edu/rpi/legup/images/Legup/Basic Rules 2.gif deleted file mode 100644 index 80246a4f2..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Basic Rules 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Basic Rules.gif b/bin/main/edu/rpi/legup/images/Legup/Basic Rules.gif deleted file mode 100644 index 80246a4f2..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Basic Rules.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Best Fit 2.png b/bin/main/edu/rpi/legup/images/Legup/Best Fit 2.png deleted file mode 100644 index 57b745575..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Best Fit 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Best Fit.png b/bin/main/edu/rpi/legup/images/Legup/Best Fit.png deleted file mode 100644 index 57b745575..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Best Fit.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Case Rules 2.gif b/bin/main/edu/rpi/legup/images/Legup/Case Rules 2.gif deleted file mode 100644 index 14c318b9e..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Case Rules 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Case Rules.gif b/bin/main/edu/rpi/legup/images/Legup/Case Rules.gif deleted file mode 100644 index 14c318b9e..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Case Rules.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Check 2.png b/bin/main/edu/rpi/legup/images/Legup/Check 2.png deleted file mode 100644 index a929f796f..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Check 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Check All 2.png b/bin/main/edu/rpi/legup/images/Legup/Check All 2.png deleted file mode 100644 index a929f796f..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Check All 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Check All.png b/bin/main/edu/rpi/legup/images/Legup/Check All.png deleted file mode 100644 index a929f796f..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Check All.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Check.png b/bin/main/edu/rpi/legup/images/Legup/Check.png deleted file mode 100644 index a929f796f..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Check.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Collapse 2.png b/bin/main/edu/rpi/legup/images/Legup/Collapse 2.png deleted file mode 100644 index 18207174f..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Collapse 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Collapse.png b/bin/main/edu/rpi/legup/images/Legup/Collapse.png deleted file mode 100644 index 18207174f..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Collapse.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Console 2.png b/bin/main/edu/rpi/legup/images/Legup/Console 2.png deleted file mode 100644 index eacfb821e..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Console 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Console.png b/bin/main/edu/rpi/legup/images/Legup/Console.png deleted file mode 100644 index eacfb821e..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Console.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Contradictions 2.gif b/bin/main/edu/rpi/legup/images/Legup/Contradictions 2.gif deleted file mode 100644 index 71351890a..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Contradictions 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Contradictions.gif b/bin/main/edu/rpi/legup/images/Legup/Contradictions.gif deleted file mode 100644 index 71351890a..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Contradictions.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/DelChild 2.png b/bin/main/edu/rpi/legup/images/Legup/DelChild 2.png deleted file mode 100644 index b130336a0..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/DelChild 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/DelChild.png b/bin/main/edu/rpi/legup/images/Legup/DelChild.png deleted file mode 100644 index b130336a0..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/DelChild.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Directions 2.png b/bin/main/edu/rpi/legup/images/Legup/Directions 2.png deleted file mode 100644 index b9490ae3f..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Directions 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Directions.png b/bin/main/edu/rpi/legup/images/Legup/Directions.png deleted file mode 100644 index b9490ae3f..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Directions.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Hint 2.png b/bin/main/edu/rpi/legup/images/Legup/Hint 2.png deleted file mode 100644 index c521fde0b..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Hint 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Hint.png b/bin/main/edu/rpi/legup/images/Legup/Hint.png deleted file mode 100644 index c521fde0b..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Hint.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/LegupSplash 2.png b/bin/main/edu/rpi/legup/images/Legup/LegupSplash 2.png deleted file mode 100644 index e5e01ae4b..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/LegupSplash 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/LegupSplash.png b/bin/main/edu/rpi/legup/images/Legup/LegupSplash.png deleted file mode 100644 index e5e01ae4b..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/LegupSplash.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Merge 2.png b/bin/main/edu/rpi/legup/images/Legup/Merge 2.png deleted file mode 100644 index 35cefcb14..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Merge 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Merge.png b/bin/main/edu/rpi/legup/images/Legup/Merge.png deleted file mode 100644 index 35cefcb14..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Merge.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/MergeRule 2.png b/bin/main/edu/rpi/legup/images/Legup/MergeRule 2.png deleted file mode 100644 index 0b44e577c..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/MergeRule 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/MergeRule.png b/bin/main/edu/rpi/legup/images/Legup/MergeRule.png deleted file mode 100644 index 0b44e577c..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/MergeRule.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/New 2.png b/bin/main/edu/rpi/legup/images/Legup/New 2.png deleted file mode 100644 index caff86b67..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/New 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/New.png b/bin/main/edu/rpi/legup/images/Legup/New.png deleted file mode 100644 index caff86b67..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/New.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Normal Zoom 2.png b/bin/main/edu/rpi/legup/images/Legup/Normal Zoom 2.png deleted file mode 100644 index 8e75a244a..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Normal Zoom 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Normal Zoom.png b/bin/main/edu/rpi/legup/images/Legup/Normal Zoom.png deleted file mode 100644 index 8e75a244a..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Normal Zoom.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Open 2.png b/bin/main/edu/rpi/legup/images/Legup/Open 2.png deleted file mode 100644 index df6b7c2db..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Open 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Open Proof 2.png b/bin/main/edu/rpi/legup/images/Legup/Open Proof 2.png deleted file mode 100644 index df6b7c2db..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Open Proof 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Open Proof.png b/bin/main/edu/rpi/legup/images/Legup/Open Proof.png deleted file mode 100644 index df6b7c2db..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Open Proof.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Open Puzzle 2.png b/bin/main/edu/rpi/legup/images/Legup/Open Puzzle 2.png deleted file mode 100644 index caff86b67..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Open Puzzle 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Open Puzzle.png b/bin/main/edu/rpi/legup/images/Legup/Open Puzzle.png deleted file mode 100644 index caff86b67..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Open Puzzle.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Open.png b/bin/main/edu/rpi/legup/images/Legup/Open.png deleted file mode 100644 index df6b7c2db..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Open.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Redo 2.png b/bin/main/edu/rpi/legup/images/Legup/Redo 2.png deleted file mode 100644 index 2dc77497d..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Redo 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Redo.png b/bin/main/edu/rpi/legup/images/Legup/Redo.png deleted file mode 100644 index 2dc77497d..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Redo.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Save 2.png b/bin/main/edu/rpi/legup/images/Legup/Save 2.png deleted file mode 100644 index bb9095676..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Save 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Save.png b/bin/main/edu/rpi/legup/images/Legup/Save.png deleted file mode 100644 index bb9095676..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Save.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Submit 2.png b/bin/main/edu/rpi/legup/images/Legup/Submit 2.png deleted file mode 100644 index 835c0ffe1..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Submit 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Submit.png b/bin/main/edu/rpi/legup/images/Legup/Submit.png deleted file mode 100644 index 835c0ffe1..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Submit.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Undo 2.png b/bin/main/edu/rpi/legup/images/Legup/Undo 2.png deleted file mode 100644 index b1099e8e3..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Undo 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Undo.png b/bin/main/edu/rpi/legup/images/Legup/Undo.png deleted file mode 100644 index b1099e8e3..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Undo.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Zoom In 2.png b/bin/main/edu/rpi/legup/images/Legup/Zoom In 2.png deleted file mode 100644 index 7436e728a..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Zoom In 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Zoom In.png b/bin/main/edu/rpi/legup/images/Legup/Zoom In.png deleted file mode 100644 index 7436e728a..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Zoom In.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Zoom Out 2.png b/bin/main/edu/rpi/legup/images/Legup/Zoom Out 2.png deleted file mode 100644 index 2e91296c7..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Zoom Out 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/Zoom Out.png b/bin/main/edu/rpi/legup/images/Legup/Zoom Out.png deleted file mode 100644 index 2e91296c7..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/Zoom Out.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/bar 2.png b/bin/main/edu/rpi/legup/images/Legup/bar 2.png deleted file mode 100644 index 58c9a85a0..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/bar 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/bar.png b/bin/main/edu/rpi/legup/images/Legup/bar.png deleted file mode 100644 index 58c9a85a0..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/bar.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/blank 2.gif b/bin/main/edu/rpi/legup/images/Legup/blank 2.gif deleted file mode 100644 index b3c4faa6d..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/blank 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/blank.gif b/bin/main/edu/rpi/legup/images/Legup/blank.gif deleted file mode 100644 index b3c4faa6d..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/blank.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/defaultContradiction 2.png b/bin/main/edu/rpi/legup/images/Legup/defaultContradiction 2.png deleted file mode 100644 index ccd8202d1..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/defaultContradiction 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/defaultContradiction.png b/bin/main/edu/rpi/legup/images/Legup/defaultContradiction.png deleted file mode 100644 index ccd8202d1..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/defaultContradiction.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/defaultRule 2.png b/bin/main/edu/rpi/legup/images/Legup/defaultRule 2.png deleted file mode 100644 index 626197143..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/defaultRule 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/defaultRule.png b/bin/main/edu/rpi/legup/images/Legup/defaultRule.png deleted file mode 100644 index 626197143..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/defaultRule.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/questionmark 2.gif b/bin/main/edu/rpi/legup/images/Legup/questionmark 2.gif deleted file mode 100644 index 073457fc2..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/questionmark 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/questionmark.gif b/bin/main/edu/rpi/legup/images/Legup/questionmark.gif deleted file mode 100644 index 073457fc2..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/questionmark.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/unknown 2.gif b/bin/main/edu/rpi/legup/images/Legup/unknown 2.gif deleted file mode 100644 index c21ee6594..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/unknown 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/Legup/unknown.gif b/bin/main/edu/rpi/legup/images/Legup/unknown.gif deleted file mode 100644 index c21ee6594..000000000 Binary files a/bin/main/edu/rpi/legup/images/Legup/unknown.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/BottomCap 2.png b/bin/main/edu/rpi/legup/images/battleship/BottomCap 2.png deleted file mode 100644 index 89f1bb104..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/BottomCap 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/BottomCap.png b/bin/main/edu/rpi/legup/images/battleship/BottomCap.png deleted file mode 100644 index 89f1bb104..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/BottomCap.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/LeftCap 2.png b/bin/main/edu/rpi/legup/images/battleship/LeftCap 2.png deleted file mode 100644 index a0d8090b1..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/LeftCap 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/LeftCap.png b/bin/main/edu/rpi/legup/images/battleship/LeftCap.png deleted file mode 100644 index a0d8090b1..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/LeftCap.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/Middle 2.png b/bin/main/edu/rpi/legup/images/battleship/Middle 2.png deleted file mode 100644 index 3a3ebcf43..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/Middle 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/Middle.png b/bin/main/edu/rpi/legup/images/battleship/Middle.png deleted file mode 100644 index 3a3ebcf43..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/Middle.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/RightCap 2.png b/bin/main/edu/rpi/legup/images/battleship/RightCap 2.png deleted file mode 100644 index 374e863a1..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/RightCap 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/RightCap.png b/bin/main/edu/rpi/legup/images/battleship/RightCap.png deleted file mode 100644 index 374e863a1..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/RightCap.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/TopCap 2.png b/bin/main/edu/rpi/legup/images/battleship/TopCap 2.png deleted file mode 100644 index b68343e39..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/TopCap 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/TopCap.png b/bin/main/edu/rpi/legup/images/battleship/TopCap.png deleted file mode 100644 index b68343e39..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/TopCap.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/UnknownSegment 2.png b/bin/main/edu/rpi/legup/images/battleship/UnknownSegment 2.png deleted file mode 100644 index 1cf2a12b8..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/UnknownSegment 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/UnknownSegment.png b/bin/main/edu/rpi/legup/images/battleship/UnknownSegment.png deleted file mode 100644 index 1cf2a12b8..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/UnknownSegment.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/cases/SegmentType 2.png b/bin/main/edu/rpi/legup/images/battleship/cases/SegmentType 2.png deleted file mode 100644 index 637012fa8..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/cases/SegmentType 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/cases/SegmentType.png b/bin/main/edu/rpi/legup/images/battleship/cases/SegmentType.png deleted file mode 100644 index 637012fa8..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/cases/SegmentType.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/cases/ShipLocations 2.png b/bin/main/edu/rpi/legup/images/battleship/cases/ShipLocations 2.png deleted file mode 100644 index b1d043fe9..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/cases/ShipLocations 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/cases/ShipLocations.png b/bin/main/edu/rpi/legup/images/battleship/cases/ShipLocations.png deleted file mode 100644 index b1d043fe9..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/cases/ShipLocations.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/cases/ShipOrWater 2.png b/bin/main/edu/rpi/legup/images/battleship/cases/ShipOrWater 2.png deleted file mode 100644 index 44d550bb0..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/cases/ShipOrWater 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/cases/ShipOrWater.png b/bin/main/edu/rpi/legup/images/battleship/cases/ShipOrWater.png deleted file mode 100644 index 44d550bb0..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/cases/ShipOrWater.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/AdjacentShips 2.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/AdjacentShips 2.png deleted file mode 100644 index 3aa89cdfe..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/AdjacentShips 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/AdjacentShips.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/AdjacentShips.png deleted file mode 100644 index 3aa89cdfe..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/AdjacentShips.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/IncompleteShip 2.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/IncompleteShip 2.png deleted file mode 100644 index 4658e0aac..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/IncompleteShip 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/IncompleteShip.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/IncompleteShip.png deleted file mode 100644 index 4658e0aac..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/IncompleteShip.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/MalformedShip 2.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/MalformedShip 2.png deleted file mode 100644 index bf34f2e7a..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/MalformedShip 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/MalformedShip.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/MalformedShip.png deleted file mode 100644 index bf34f2e7a..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/MalformedShip.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_few_in_fleet 2.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/too_few_in_fleet 2.png deleted file mode 100644 index 1e66af4ad..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_few_in_fleet 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_few_in_fleet.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/too_few_in_fleet.png deleted file mode 100644 index 1e66af4ad..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_few_in_fleet.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_few_segments 2.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/too_few_segments 2.png deleted file mode 100644 index d56f8bc3a..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_few_segments 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_few_segments.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/too_few_segments.png deleted file mode 100644 index d56f8bc3a..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_few_segments.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_many_in_fleet 2.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/too_many_in_fleet 2.png deleted file mode 100644 index 46c6f31f9..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_many_in_fleet 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_many_in_fleet.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/too_many_in_fleet.png deleted file mode 100644 index 46c6f31f9..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_many_in_fleet.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_many_segments 2.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/too_many_segments 2.png deleted file mode 100644 index 21cb45348..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_many_segments 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_many_segments.png b/bin/main/edu/rpi/legup/images/battleship/contradictions/too_many_segments.png deleted file mode 100644 index 21cb45348..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/contradictions/too_many_segments.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/labelforce 2.png b/bin/main/edu/rpi/legup/images/battleship/labelforce 2.png deleted file mode 100644 index f28934e2a..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/labelforce 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/labelforce.png b/bin/main/edu/rpi/legup/images/battleship/labelforce.png deleted file mode 100644 index f28934e2a..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/labelforce.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/SegmentType 2.png b/bin/main/edu/rpi/legup/images/battleship/old/SegmentType 2.png deleted file mode 100644 index ad62edda3..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/SegmentType 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/SegmentType.png b/bin/main/edu/rpi/legup/images/battleship/old/SegmentType.png deleted file mode 100644 index ad62edda3..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/SegmentType.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/ShipOrWater 2.png b/bin/main/edu/rpi/legup/images/battleship/old/ShipOrWater 2.png deleted file mode 100644 index c039c0366..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/ShipOrWater 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/ShipOrWater.png b/bin/main/edu/rpi/legup/images/battleship/old/ShipOrWater.png deleted file mode 100644 index c039c0366..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/ShipOrWater.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[0] 2.gif b/bin/main/edu/rpi/legup/images/battleship/old/image[0] 2.gif deleted file mode 100644 index fee37b377..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[0] 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[0].gif b/bin/main/edu/rpi/legup/images/battleship/old/image[0].gif deleted file mode 100644 index fee37b377..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[0].gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[10] 2.gif b/bin/main/edu/rpi/legup/images/battleship/old/image[10] 2.gif deleted file mode 100644 index 96a30a730..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[10] 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[10].gif b/bin/main/edu/rpi/legup/images/battleship/old/image[10].gif deleted file mode 100644 index 96a30a730..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[10].gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[11] 2.gif b/bin/main/edu/rpi/legup/images/battleship/old/image[11] 2.gif deleted file mode 100644 index fd8293b6a..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[11] 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[11].gif b/bin/main/edu/rpi/legup/images/battleship/old/image[11].gif deleted file mode 100644 index fd8293b6a..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[11].gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[12] 2.gif b/bin/main/edu/rpi/legup/images/battleship/old/image[12] 2.gif deleted file mode 100644 index 2a8144397..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[12] 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[12].gif b/bin/main/edu/rpi/legup/images/battleship/old/image[12].gif deleted file mode 100644 index 2a8144397..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[12].gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[13] 2.gif b/bin/main/edu/rpi/legup/images/battleship/old/image[13] 2.gif deleted file mode 100644 index 15b73e4c5..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[13] 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[13].gif b/bin/main/edu/rpi/legup/images/battleship/old/image[13].gif deleted file mode 100644 index 15b73e4c5..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[13].gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[14] 2.gif b/bin/main/edu/rpi/legup/images/battleship/old/image[14] 2.gif deleted file mode 100644 index 1805a84fc..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[14] 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[14].gif b/bin/main/edu/rpi/legup/images/battleship/old/image[14].gif deleted file mode 100644 index 1805a84fc..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[14].gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[15] 2.gif b/bin/main/edu/rpi/legup/images/battleship/old/image[15] 2.gif deleted file mode 100644 index 5fbe6a584..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[15] 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[15].gif b/bin/main/edu/rpi/legup/images/battleship/old/image[15].gif deleted file mode 100644 index 5fbe6a584..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[15].gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[1] 2.gif b/bin/main/edu/rpi/legup/images/battleship/old/image[1] 2.gif deleted file mode 100644 index d7e5bcddb..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[1] 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[1].gif b/bin/main/edu/rpi/legup/images/battleship/old/image[1].gif deleted file mode 100644 index d7e5bcddb..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[1].gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[2] 2.gif b/bin/main/edu/rpi/legup/images/battleship/old/image[2] 2.gif deleted file mode 100644 index 45ef2a557..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[2] 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/image[2].gif b/bin/main/edu/rpi/legup/images/battleship/old/image[2].gif deleted file mode 100644 index 45ef2a557..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/image[2].gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/screenshot 2.png b/bin/main/edu/rpi/legup/images/battleship/old/screenshot 2.png deleted file mode 100644 index 21fc73906..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/screenshot 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/old/screenshot.png b/bin/main/edu/rpi/legup/images/battleship/old/screenshot.png deleted file mode 100644 index 21fc73906..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/old/screenshot.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/rules/ContinueShip 2.png b/bin/main/edu/rpi/legup/images/battleship/rules/ContinueShip 2.png deleted file mode 100644 index 759b9bf7d..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/rules/ContinueShip 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/rules/ContinueShip.png b/bin/main/edu/rpi/legup/images/battleship/rules/ContinueShip.png deleted file mode 100644 index 759b9bf7d..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/rules/ContinueShip.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/rules/SegmentChoice 2.png b/bin/main/edu/rpi/legup/images/battleship/rules/SegmentChoice 2.png deleted file mode 100644 index ad22c1144..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/rules/SegmentChoice 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/rules/SegmentChoice.png b/bin/main/edu/rpi/legup/images/battleship/rules/SegmentChoice.png deleted file mode 100644 index ad22c1144..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/rules/SegmentChoice.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/rules/SurroundShip 2.png b/bin/main/edu/rpi/legup/images/battleship/rules/SurroundShip 2.png deleted file mode 100644 index 1c8c61843..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/rules/SurroundShip 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/rules/SurroundShip.png b/bin/main/edu/rpi/legup/images/battleship/rules/SurroundShip.png deleted file mode 100644 index 1c8c61843..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/rules/SurroundShip.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/rules/finishShip 2.png b/bin/main/edu/rpi/legup/images/battleship/rules/finishShip 2.png deleted file mode 100644 index 9cd05afc0..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/rules/finishShip 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/rules/finishShip.png b/bin/main/edu/rpi/legup/images/battleship/rules/finishShip.png deleted file mode 100644 index 9cd05afc0..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/rules/finishShip.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/rules/finishWater 2.png b/bin/main/edu/rpi/legup/images/battleship/rules/finishWater 2.png deleted file mode 100644 index 9950de39e..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/rules/finishWater 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/rules/finishWater.png b/bin/main/edu/rpi/legup/images/battleship/rules/finishWater.png deleted file mode 100644 index 9950de39e..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/rules/finishWater.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/submarine 2.png b/bin/main/edu/rpi/legup/images/battleship/submarine 2.png deleted file mode 100644 index e067fac1f..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/submarine 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/submarine.png b/bin/main/edu/rpi/legup/images/battleship/submarine.png deleted file mode 100644 index e067fac1f..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/submarine.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/too_many_in_fleet 2.psd b/bin/main/edu/rpi/legup/images/battleship/too_many_in_fleet 2.psd deleted file mode 100644 index a86a28214..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/too_many_in_fleet 2.psd and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/too_many_in_fleet.psd b/bin/main/edu/rpi/legup/images/battleship/too_many_in_fleet.psd deleted file mode 100644 index a86a28214..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/too_many_in_fleet.psd and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/water 2.png b/bin/main/edu/rpi/legup/images/battleship/water 2.png deleted file mode 100644 index 84ee4105d..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/water 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/battleship/water.png b/bin/main/edu/rpi/legup/images/battleship/water.png deleted file mode 100644 index 84ee4105d..000000000 Binary files a/bin/main/edu/rpi/legup/images/battleship/water.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/fillapix/cases/BlackOrWhite 2.png b/bin/main/edu/rpi/legup/images/fillapix/cases/BlackOrWhite 2.png deleted file mode 100644 index ff234c17f..000000000 Binary files a/bin/main/edu/rpi/legup/images/fillapix/cases/BlackOrWhite 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/fillapix/cases/BlackOrWhite.png b/bin/main/edu/rpi/legup/images/fillapix/cases/BlackOrWhite.png deleted file mode 100644 index ff234c17f..000000000 Binary files a/bin/main/edu/rpi/legup/images/fillapix/cases/BlackOrWhite.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/fillapix/contradictions/TooFewBlackCells 2.png b/bin/main/edu/rpi/legup/images/fillapix/contradictions/TooFewBlackCells 2.png deleted file mode 100644 index b017078a2..000000000 Binary files a/bin/main/edu/rpi/legup/images/fillapix/contradictions/TooFewBlackCells 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/fillapix/contradictions/TooFewBlackCells.png b/bin/main/edu/rpi/legup/images/fillapix/contradictions/TooFewBlackCells.png deleted file mode 100644 index b017078a2..000000000 Binary files a/bin/main/edu/rpi/legup/images/fillapix/contradictions/TooFewBlackCells.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/fillapix/contradictions/TooManyBlackCells 2.png b/bin/main/edu/rpi/legup/images/fillapix/contradictions/TooManyBlackCells 2.png deleted file mode 100644 index a0b27424d..000000000 Binary files a/bin/main/edu/rpi/legup/images/fillapix/contradictions/TooManyBlackCells 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/fillapix/contradictions/TooManyBlackCells.png b/bin/main/edu/rpi/legup/images/fillapix/contradictions/TooManyBlackCells.png deleted file mode 100644 index a0b27424d..000000000 Binary files a/bin/main/edu/rpi/legup/images/fillapix/contradictions/TooManyBlackCells.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/fillapix/rules/FinishWithBlack 2.png b/bin/main/edu/rpi/legup/images/fillapix/rules/FinishWithBlack 2.png deleted file mode 100644 index 41e540ad1..000000000 Binary files a/bin/main/edu/rpi/legup/images/fillapix/rules/FinishWithBlack 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/fillapix/rules/FinishWithBlack.png b/bin/main/edu/rpi/legup/images/fillapix/rules/FinishWithBlack.png deleted file mode 100644 index 41e540ad1..000000000 Binary files a/bin/main/edu/rpi/legup/images/fillapix/rules/FinishWithBlack.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/fillapix/rules/FinishWithWhite 2.png b/bin/main/edu/rpi/legup/images/fillapix/rules/FinishWithWhite 2.png deleted file mode 100644 index 330f705f1..000000000 Binary files a/bin/main/edu/rpi/legup/images/fillapix/rules/FinishWithWhite 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/fillapix/rules/FinishWithWhite.png b/bin/main/edu/rpi/legup/images/fillapix/rules/FinishWithWhite.png deleted file mode 100644 index 330f705f1..000000000 Binary files a/bin/main/edu/rpi/legup/images/fillapix/rules/FinishWithWhite.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/fillapix/rulesharedcells 2.png b/bin/main/edu/rpi/legup/images/fillapix/rulesharedcells 2.png deleted file mode 100644 index 730a013b6..000000000 Binary files a/bin/main/edu/rpi/legup/images/fillapix/rulesharedcells 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/fillapix/rulesharedcells.png b/bin/main/edu/rpi/legup/images/fillapix/rulesharedcells.png deleted file mode 100644 index 730a013b6..000000000 Binary files a/bin/main/edu/rpi/legup/images/fillapix/rulesharedcells.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/cases/BlackOrWhite 2.png b/bin/main/edu/rpi/legup/images/heyawake/cases/BlackOrWhite 2.png deleted file mode 100644 index cb21bd1ec..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/cases/BlackOrWhite 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/cases/BlackOrWhite.png b/bin/main/edu/rpi/legup/images/heyawake/cases/BlackOrWhite.png deleted file mode 100644 index cb21bd1ec..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/cases/BlackOrWhite.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/contradictions/RoomTooEmpty 2.png b/bin/main/edu/rpi/legup/images/heyawake/contradictions/RoomTooEmpty 2.png deleted file mode 100644 index a93406796..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/contradictions/RoomTooEmpty 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/contradictions/RoomTooEmpty.png b/bin/main/edu/rpi/legup/images/heyawake/contradictions/RoomTooEmpty.png deleted file mode 100644 index a93406796..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/contradictions/RoomTooEmpty.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/contradictions/RoomTooFull 2.png b/bin/main/edu/rpi/legup/images/heyawake/contradictions/RoomTooFull 2.png deleted file mode 100644 index 75c557e61..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/contradictions/RoomTooFull 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/contradictions/RoomTooFull.png b/bin/main/edu/rpi/legup/images/heyawake/contradictions/RoomTooFull.png deleted file mode 100644 index 75c557e61..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/contradictions/RoomTooFull.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/contradictions/WhiteArea 2.png b/bin/main/edu/rpi/legup/images/heyawake/contradictions/WhiteArea 2.png deleted file mode 100644 index 4186d8844..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/contradictions/WhiteArea 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/contradictions/WhiteArea.png b/bin/main/edu/rpi/legup/images/heyawake/contradictions/WhiteArea.png deleted file mode 100644 index 4186d8844..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/contradictions/WhiteArea.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/contradictions/WhiteLine 2.png b/bin/main/edu/rpi/legup/images/heyawake/contradictions/WhiteLine 2.png deleted file mode 100644 index 60b9f1b7a..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/contradictions/WhiteLine 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/contradictions/WhiteLine.png b/bin/main/edu/rpi/legup/images/heyawake/contradictions/WhiteLine.png deleted file mode 100644 index 60b9f1b7a..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/contradictions/WhiteLine.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/contradictions/adjacentBlacks 2.png b/bin/main/edu/rpi/legup/images/heyawake/contradictions/adjacentBlacks 2.png deleted file mode 100644 index b45027498..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/contradictions/adjacentBlacks 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/contradictions/adjacentBlacks.png b/bin/main/edu/rpi/legup/images/heyawake/contradictions/adjacentBlacks.png deleted file mode 100644 index b45027498..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/contradictions/adjacentBlacks.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/finishRoom.png b/bin/main/edu/rpi/legup/images/heyawake/finishRoom.png deleted file mode 100644 index d36ddea8e..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/finishRoom.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/-1 2.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/-1 2.gif deleted file mode 100644 index c21ee6594..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/-1 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/-1.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/-1.gif deleted file mode 100644 index c21ee6594..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/-1.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/0.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/0.gif deleted file mode 100644 index 6564c802c..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/0.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/1.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/1.gif deleted file mode 100644 index b27e02d1f..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/1.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/10.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/10.gif deleted file mode 100644 index dfded388e..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/10.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/11.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/11.gif deleted file mode 100644 index e8c8bcc15..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/11.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/12.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/12.gif deleted file mode 100644 index f1ae7453a..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/12.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/13.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/13.gif deleted file mode 100644 index 6c95c8a18..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/13.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/14.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/14.gif deleted file mode 100644 index b6e23680f..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/14.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/15.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/15.gif deleted file mode 100644 index 19b8c5e08..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/15.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/2.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/2.gif deleted file mode 100644 index c879a80af..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/3.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/3.gif deleted file mode 100644 index 1aa806df7..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/3.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/4.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/4.gif deleted file mode 100644 index c010ec7b9..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/4.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/5.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/5.gif deleted file mode 100644 index 0da2d483e..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/5.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/6.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/6.gif deleted file mode 100644 index eac0bbf4e..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/6.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/7.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/7.gif deleted file mode 100644 index 66448faee..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/7.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/8.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/8.gif deleted file mode 100644 index 9052d7cdb..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/8.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/9.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/9.gif deleted file mode 100644 index eefcf08e9..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/9.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/-1 2.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/-1 2.gif deleted file mode 100644 index c21ee6594..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/-1 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/-1.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/-1.gif deleted file mode 100644 index c21ee6594..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/-1.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/0.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/0.gif deleted file mode 100644 index 399137005..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/0.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/1.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/1.gif deleted file mode 100644 index 8057ead91..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/1.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/10.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/10.gif deleted file mode 100644 index c55207a11..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/10.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/11.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/11.gif deleted file mode 100644 index 9e766bebe..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/11.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/12.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/12.gif deleted file mode 100644 index e76377cb2..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/12.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/13.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/13.gif deleted file mode 100644 index 793127ace..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/13.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/14.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/14.gif deleted file mode 100644 index 2a8f1cc31..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/14.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/15.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/15.gif deleted file mode 100644 index 19a3a94f0..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/15.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/2.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/2.gif deleted file mode 100644 index c82268765..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/3.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/3.gif deleted file mode 100644 index 5c5f31829..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/3.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/4.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/4.gif deleted file mode 100644 index efe20e477..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/4.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/5.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/5.gif deleted file mode 100644 index 96a71ddbb..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/5.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/6.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/6.gif deleted file mode 100644 index 73ddccbc5..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/6.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/7.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/7.gif deleted file mode 100644 index 647862c11..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/7.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/8.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/8.gif deleted file mode 100644 index 7e98c779b..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/8.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/9.gif b/bin/main/edu/rpi/legup/images/heyawake/regions/selected/9.gif deleted file mode 100644 index 566351578..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/regions/selected/9.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/rules/FillRoomBlack 2.png b/bin/main/edu/rpi/legup/images/heyawake/rules/FillRoomBlack 2.png deleted file mode 100644 index d0f0643c0..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/rules/FillRoomBlack 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/rules/FillRoomBlack.png b/bin/main/edu/rpi/legup/images/heyawake/rules/FillRoomBlack.png deleted file mode 100644 index d0f0643c0..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/rules/FillRoomBlack.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/rules/FillRoomWhite.png b/bin/main/edu/rpi/legup/images/heyawake/rules/FillRoomWhite.png deleted file mode 100644 index 53538cd9a..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/rules/FillRoomWhite.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/heyawake/rules/WhiteAroundBlack.png b/bin/main/edu/rpi/legup/images/heyawake/rules/WhiteAroundBlack.png deleted file mode 100644 index c2dd9828f..000000000 Binary files a/bin/main/edu/rpi/legup/images/heyawake/rules/WhiteAroundBlack.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/0 2.gif b/bin/main/edu/rpi/legup/images/lightup/0 2.gif deleted file mode 100644 index eadb58024..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/0 2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/0.gif b/bin/main/edu/rpi/legup/images/lightup/0.gif deleted file mode 100644 index eadb58024..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/0.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/1.gif b/bin/main/edu/rpi/legup/images/lightup/1.gif deleted file mode 100644 index 73a4365b2..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/1.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/2.gif b/bin/main/edu/rpi/legup/images/lightup/2.gif deleted file mode 100644 index df0b3f340..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/2.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/3.gif b/bin/main/edu/rpi/legup/images/lightup/3.gif deleted file mode 100644 index b76bebfec..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/3.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/4.gif b/bin/main/edu/rpi/legup/images/lightup/4.gif deleted file mode 100644 index 5c20acb30..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/4.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/black.gif b/bin/main/edu/rpi/legup/images/lightup/black.gif deleted file mode 100644 index 13381a717..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/black.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/cases/LightOrEmpty 2.png b/bin/main/edu/rpi/legup/images/lightup/cases/LightOrEmpty 2.png deleted file mode 100644 index 08fe733bb..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/cases/LightOrEmpty 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/cases/LightOrEmpty.png b/bin/main/edu/rpi/legup/images/lightup/cases/LightOrEmpty.png deleted file mode 100644 index 08fe733bb..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/cases/LightOrEmpty.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/cases/Old/SatisfyNumber 2.png b/bin/main/edu/rpi/legup/images/lightup/cases/Old/SatisfyNumber 2.png deleted file mode 100644 index 8544b070b..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/cases/Old/SatisfyNumber 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/cases/Old/SatisfyNumber.png b/bin/main/edu/rpi/legup/images/lightup/cases/Old/SatisfyNumber.png deleted file mode 100644 index 8544b070b..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/cases/Old/SatisfyNumber.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/cases/Old/SatisfyNumber2.png b/bin/main/edu/rpi/legup/images/lightup/cases/Old/SatisfyNumber2.png deleted file mode 100644 index c556e459b..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/cases/Old/SatisfyNumber2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/cases/SatisfyNumber.png b/bin/main/edu/rpi/legup/images/lightup/cases/SatisfyNumber.png deleted file mode 100644 index f09535ca8..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/cases/SatisfyNumber.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/contradictions/BulbsInPath 2.png b/bin/main/edu/rpi/legup/images/lightup/contradictions/BulbsInPath 2.png deleted file mode 100644 index 4e118cf11..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/contradictions/BulbsInPath 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/contradictions/BulbsInPath.png b/bin/main/edu/rpi/legup/images/lightup/contradictions/BulbsInPath.png deleted file mode 100644 index 4e118cf11..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/contradictions/BulbsInPath.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/contradictions/CannotLightACell.png b/bin/main/edu/rpi/legup/images/lightup/contradictions/CannotLightACell.png deleted file mode 100644 index 39ffa112f..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/contradictions/CannotLightACell.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/BulbsInPath 2.png b/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/BulbsInPath 2.png deleted file mode 100644 index 6df4853dc..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/BulbsInPath 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/BulbsInPath.png b/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/BulbsInPath.png deleted file mode 100644 index 6df4853dc..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/BulbsInPath.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/NoLight.png b/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/NoLight.png deleted file mode 100644 index d6c10324b..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/NoLight.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/TooFewBulbs.png b/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/TooFewBulbs.png deleted file mode 100644 index 5cb2b5fee..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/TooFewBulbs.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/TooFewBulbs2.png b/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/TooFewBulbs2.png deleted file mode 100644 index 4d2f06f10..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/TooFewBulbs2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/TooManyBulbs.png b/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/TooManyBulbs.png deleted file mode 100644 index 47f6e8cee..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/TooManyBulbs.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/TooManyBulbs2.png b/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/TooManyBulbs2.png deleted file mode 100644 index efdc6f3c5..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/contradictions/Old/TooManyBulbs2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/contradictions/TooFewBulbs.png b/bin/main/edu/rpi/legup/images/lightup/contradictions/TooFewBulbs.png deleted file mode 100644 index ae5eb9712..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/contradictions/TooFewBulbs.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/contradictions/TooManyBulbs.png b/bin/main/edu/rpi/legup/images/lightup/contradictions/TooManyBulbs.png deleted file mode 100644 index ca6070a55..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/contradictions/TooManyBulbs.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/empty.gif b/bin/main/edu/rpi/legup/images/lightup/empty.gif deleted file mode 100644 index 38b91d0a2..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/empty.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/light.gif b/bin/main/edu/rpi/legup/images/lightup/light.gif deleted file mode 100644 index e30ed624e..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/light.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/light.png b/bin/main/edu/rpi/legup/images/lightup/light.png deleted file mode 100644 index af4172a8d..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/light.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/AddLight 2.png b/bin/main/edu/rpi/legup/images/lightup/rules/AddLight 2.png deleted file mode 100644 index bea9232dd..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/AddLight 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/AddLight.png b/bin/main/edu/rpi/legup/images/lightup/rules/AddLight.png deleted file mode 100644 index bea9232dd..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/AddLight.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/BulbsOutsideDiagonal.png b/bin/main/edu/rpi/legup/images/lightup/rules/BulbsOutsideDiagonal.png deleted file mode 100644 index 1068bfd79..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/BulbsOutsideDiagonal.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/EmptyCellInLight.png b/bin/main/edu/rpi/legup/images/lightup/rules/EmptyCellInLight.png deleted file mode 100644 index a33141a96..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/EmptyCellInLight.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/EmptyCorners.png b/bin/main/edu/rpi/legup/images/lightup/rules/EmptyCorners.png deleted file mode 100644 index b93b2781f..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/EmptyCorners.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/FinishWithBulbs.png b/bin/main/edu/rpi/legup/images/lightup/rules/FinishWithBulbs.png deleted file mode 100644 index 1215dd626..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/FinishWithBulbs.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/FinishWithEmpty.png b/bin/main/edu/rpi/legup/images/lightup/rules/FinishWithEmpty.png deleted file mode 100644 index 9cafb1d52..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/FinishWithEmpty.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/MustLight.png b/bin/main/edu/rpi/legup/images/lightup/rules/MustLight.png deleted file mode 100644 index 6968106c9..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/MustLight.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/Old/AddLight 2.png b/bin/main/edu/rpi/legup/images/lightup/rules/Old/AddLight 2.png deleted file mode 100644 index dd4b696a9..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/Old/AddLight 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/Old/AddLight.png b/bin/main/edu/rpi/legup/images/lightup/rules/Old/AddLight.png deleted file mode 100644 index dd4b696a9..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/Old/AddLight.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/Old/MustLight.png b/bin/main/edu/rpi/legup/images/lightup/rules/Old/MustLight.png deleted file mode 100644 index a9c3d9b94..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/Old/MustLight.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/Old/SurroundBulbs.png b/bin/main/edu/rpi/legup/images/lightup/rules/Old/SurroundBulbs.png deleted file mode 100644 index 12acb9b2f..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/Old/SurroundBulbs.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/Old/SurroundBulbs2.png b/bin/main/edu/rpi/legup/images/lightup/rules/Old/SurroundBulbs2.png deleted file mode 100644 index 49cf2ede8..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/Old/SurroundBulbs2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/Old/SurroundWhite.png b/bin/main/edu/rpi/legup/images/lightup/rules/Old/SurroundWhite.png deleted file mode 100644 index 78f99b684..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/Old/SurroundWhite.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/Old/SurroundWhite2.png b/bin/main/edu/rpi/legup/images/lightup/rules/Old/SurroundWhite2.png deleted file mode 100644 index daec1bc7d..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/Old/SurroundWhite2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/Old/WhiteCorners.png b/bin/main/edu/rpi/legup/images/lightup/rules/Old/WhiteCorners.png deleted file mode 100644 index ec6694fa5..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/Old/WhiteCorners.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/lightup/rules/Old/WhiteInLight.png b/bin/main/edu/rpi/legup/images/lightup/rules/Old/WhiteInLight.png deleted file mode 100644 index 95e36cf2c..000000000 Binary files a/bin/main/edu/rpi/legup/images/lightup/rules/Old/WhiteInLight.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/CaseBlackSplit 2.png b/bin/main/edu/rpi/legup/images/masyu/CaseBlackSplit 2.png deleted file mode 100644 index 1a4d480de..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/CaseBlackSplit 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/CaseBlackSplit.png b/bin/main/edu/rpi/legup/images/masyu/CaseBlackSplit.png deleted file mode 100644 index 1a4d480de..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/CaseBlackSplit.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/CaseNormalSplit.png b/bin/main/edu/rpi/legup/images/masyu/CaseNormalSplit.png deleted file mode 100644 index d8db0f724..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/CaseNormalSplit.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/CaseWhiteSplit.png b/bin/main/edu/rpi/legup/images/masyu/CaseWhiteSplit.png deleted file mode 100644 index 9024c0f0f..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/CaseWhiteSplit.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/ContradictionBadLooping.png b/bin/main/edu/rpi/legup/images/masyu/ContradictionBadLooping.png deleted file mode 100644 index 22d0f3d9d..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/ContradictionBadLooping.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/ContradictionBlack.png b/bin/main/edu/rpi/legup/images/masyu/ContradictionBlack.png deleted file mode 100644 index 1d60c830f..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/ContradictionBlack.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/ContradictionNoOptions.png b/bin/main/edu/rpi/legup/images/masyu/ContradictionNoOptions.png deleted file mode 100644 index 17eb350e7..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/ContradictionNoOptions.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/ContradictionOnly2.png b/bin/main/edu/rpi/legup/images/masyu/ContradictionOnly2.png deleted file mode 100644 index c648961cc..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/ContradictionOnly2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/ContradictionWhite.png b/bin/main/edu/rpi/legup/images/masyu/ContradictionWhite.png deleted file mode 100644 index b65a55a30..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/ContradictionWhite.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/RuleBlackEdge.png b/bin/main/edu/rpi/legup/images/masyu/RuleBlackEdge.png deleted file mode 100644 index 8c4266a42..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/RuleBlackEdge.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/RuleBlockedBlack.gif b/bin/main/edu/rpi/legup/images/masyu/RuleBlockedBlack.gif deleted file mode 100644 index 64b306b23..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/RuleBlockedBlack.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/RuleConnectedCells.gif b/bin/main/edu/rpi/legup/images/masyu/RuleConnectedCells.gif deleted file mode 100644 index 022674165..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/RuleConnectedCells.gif and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/RuleFinishPath.png b/bin/main/edu/rpi/legup/images/masyu/RuleFinishPath.png deleted file mode 100644 index ce4e91cc1..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/RuleFinishPath.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/RuleNearWhite.png b/bin/main/edu/rpi/legup/images/masyu/RuleNearWhite.png deleted file mode 100644 index 41e777aa6..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/RuleNearWhite.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/RuleOnlyOneChoice.png b/bin/main/edu/rpi/legup/images/masyu/RuleOnlyOneChoice.png deleted file mode 100644 index 0fc9d63a4..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/RuleOnlyOneChoice.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/masyu/RuleWhiteEdge.png b/bin/main/edu/rpi/legup/images/masyu/RuleWhiteEdge.png deleted file mode 100644 index 1a33eb244..000000000 Binary files a/bin/main/edu/rpi/legup/images/masyu/RuleWhiteEdge.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/cases/BlackOrWhite 2.png b/bin/main/edu/rpi/legup/images/nurikabe/cases/BlackOrWhite 2.png deleted file mode 100644 index cb21bd1ec..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/cases/BlackOrWhite 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/cases/BlackOrWhite.png b/bin/main/edu/rpi/legup/images/nurikabe/cases/BlackOrWhite.png deleted file mode 100644 index cb21bd1ec..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/cases/BlackOrWhite.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/BlackArea 2.png b/bin/main/edu/rpi/legup/images/nurikabe/contradictions/BlackArea 2.png deleted file mode 100644 index 3b97f2584..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/BlackArea 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/BlackArea.png b/bin/main/edu/rpi/legup/images/nurikabe/contradictions/BlackArea.png deleted file mode 100644 index 3b97f2584..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/BlackArea.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/BlackSquare.png b/bin/main/edu/rpi/legup/images/nurikabe/contradictions/BlackSquare.png deleted file mode 100644 index 4980ab2ec..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/BlackSquare.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/CantReach.png b/bin/main/edu/rpi/legup/images/nurikabe/contradictions/CantReach.png deleted file mode 100644 index b5deb9e92..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/CantReach.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/MultipleNumbers.png b/bin/main/edu/rpi/legup/images/nurikabe/contradictions/MultipleNumbers.png deleted file mode 100644 index c11e34e84..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/MultipleNumbers.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/NoNumber.png b/bin/main/edu/rpi/legup/images/nurikabe/contradictions/NoNumber.png deleted file mode 100644 index 55219fca2..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/NoNumber.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/TooFewSpaces.png b/bin/main/edu/rpi/legup/images/nurikabe/contradictions/TooFewSpaces.png deleted file mode 100644 index 63553080b..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/TooFewSpaces.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/TooManySpaces.png b/bin/main/edu/rpi/legup/images/nurikabe/contradictions/TooManySpaces.png deleted file mode 100644 index dc4e571e3..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/contradictions/TooManySpaces.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/nurikabe_icon_template.psd b/bin/main/edu/rpi/legup/images/nurikabe/nurikabe_icon_template.psd deleted file mode 100644 index f8829f7ff..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/nurikabe_icon_template.psd and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/rules/BetweenRegions 2.png b/bin/main/edu/rpi/legup/images/nurikabe/rules/BetweenRegions 2.png deleted file mode 100644 index e6468703c..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/rules/BetweenRegions 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/rules/BetweenRegions.png b/bin/main/edu/rpi/legup/images/nurikabe/rules/BetweenRegions.png deleted file mode 100644 index e6468703c..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/rules/BetweenRegions.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/rules/CornerBlack.png b/bin/main/edu/rpi/legup/images/nurikabe/rules/CornerBlack.png deleted file mode 100644 index e19626032..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/rules/CornerBlack.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/rules/FillInBlack.png b/bin/main/edu/rpi/legup/images/nurikabe/rules/FillInBlack.png deleted file mode 100644 index bdf7dd58f..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/rules/FillInBlack.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/rules/FillInWhite.png b/bin/main/edu/rpi/legup/images/nurikabe/rules/FillInWhite.png deleted file mode 100644 index d3cad90f0..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/rules/FillInWhite.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/rules/NoBlackSquare.png b/bin/main/edu/rpi/legup/images/nurikabe/rules/NoBlackSquare.png deleted file mode 100644 index fbd1ffc5d..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/rules/NoBlackSquare.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/rules/OneUnknownBlack.png b/bin/main/edu/rpi/legup/images/nurikabe/rules/OneUnknownBlack.png deleted file mode 100644 index e31134e40..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/rules/OneUnknownBlack.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/rules/OneUnknownRegion.png b/bin/main/edu/rpi/legup/images/nurikabe/rules/OneUnknownRegion.png deleted file mode 100644 index b57e98352..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/rules/OneUnknownRegion.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/rules/OneUnknownWhite.png b/bin/main/edu/rpi/legup/images/nurikabe/rules/OneUnknownWhite.png deleted file mode 100644 index 04bab1ad2..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/rules/OneUnknownWhite.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/rules/RuleWhite.png b/bin/main/edu/rpi/legup/images/nurikabe/rules/RuleWhite.png deleted file mode 100644 index b57e98352..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/rules/RuleWhite.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/rules/SurroundBlack.png b/bin/main/edu/rpi/legup/images/nurikabe/rules/SurroundBlack.png deleted file mode 100644 index d55162e84..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/rules/SurroundBlack.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/rules/Unreachable.png b/bin/main/edu/rpi/legup/images/nurikabe/rules/Unreachable.png deleted file mode 100644 index c0fb4c842..000000000 Binary files a/bin/main/edu/rpi/legup/images/nurikabe/rules/Unreachable.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/tiles/BlackTile.png b/bin/main/edu/rpi/legup/images/nurikabe/tiles/BlackTile.png new file mode 100644 index 000000000..93e169df8 Binary files /dev/null and b/bin/main/edu/rpi/legup/images/nurikabe/tiles/BlackTile.png differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/tiles/NumberTile.png b/bin/main/edu/rpi/legup/images/nurikabe/tiles/NumberTile.png new file mode 100644 index 000000000..5a8540d02 Binary files /dev/null and b/bin/main/edu/rpi/legup/images/nurikabe/tiles/NumberTile.png differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/tiles/UnknownTile.png b/bin/main/edu/rpi/legup/images/nurikabe/tiles/UnknownTile.png new file mode 100644 index 000000000..850fbf127 Binary files /dev/null and b/bin/main/edu/rpi/legup/images/nurikabe/tiles/UnknownTile.png differ diff --git a/bin/main/edu/rpi/legup/images/nurikabe/tiles/WhiteTile.png b/bin/main/edu/rpi/legup/images/nurikabe/tiles/WhiteTile.png new file mode 100644 index 000000000..fc2c683eb Binary files /dev/null and b/bin/main/edu/rpi/legup/images/nurikabe/tiles/WhiteTile.png differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/Atomic 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/Atomic 2.png deleted file mode 100644 index cb12cb1bc..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/Atomic 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/Atomic.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/Atomic.png deleted file mode 100644 index cb12cb1bc..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/Atomic.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/And 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/And 2.png deleted file mode 100644 index 2fa2bf7e0..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/And 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/And.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/And.png deleted file mode 100644 index 2fa2bf7e0..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/And.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Biconditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Biconditional.png deleted file mode 100644 index dad2f3cbe..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Biconditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Conditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Conditional 2.png deleted file mode 100644 index c5dc8d26d..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Conditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Conditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Conditional.png deleted file mode 100644 index c5dc8d26d..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Conditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Not 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Not 2.png deleted file mode 100644 index cad397291..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Not 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Not.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Not.png deleted file mode 100644 index cad397291..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Not.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Or 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Or 2.png deleted file mode 100644 index b2cd82c7d..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Or 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Or.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Or.png deleted file mode 100644 index b2cd82c7d..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/elimination/Or.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/And 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/And 2.png deleted file mode 100644 index a728f6a6f..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/And 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/And.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/And.png deleted file mode 100644 index a728f6a6f..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/And.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Biconditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Biconditional 2.png deleted file mode 100644 index 172e097bc..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Biconditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Biconditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Biconditional.png deleted file mode 100644 index 172e097bc..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Biconditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Conditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Conditional 2.png deleted file mode 100644 index 93c87a576..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Conditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Conditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Conditional.png deleted file mode 100644 index 93c87a576..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Conditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Not 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Not 2.png deleted file mode 100644 index 1a1d36e8e..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Not 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Not.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Not.png deleted file mode 100644 index 1a1d36e8e..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Not.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Or 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Or 2.png deleted file mode 100644 index ebffc5220..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Or 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Or.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Or.png deleted file mode 100644 index ebffc5220..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/basic/introduction/Or.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/And 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/And 2.png deleted file mode 100644 index 0b9b75ce4..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/And 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/And.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/And.png deleted file mode 100644 index 0b9b75ce4..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/And.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Atomic 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Atomic 2.png deleted file mode 100644 index f5cbdeb5f..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Atomic 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Atomic.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Atomic.png deleted file mode 100644 index f5cbdeb5f..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Atomic.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Biconditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Biconditional 2.png deleted file mode 100644 index 6f119cbdd..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Biconditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Biconditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Biconditional.png deleted file mode 100644 index 6f119cbdd..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Biconditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Conditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Conditional 2.png deleted file mode 100644 index 4e15dabb4..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Conditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Conditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Conditional.png deleted file mode 100644 index 4e15dabb4..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Conditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Not 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Not 2.png deleted file mode 100644 index 0c0ec191f..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Not 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Not.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Not.png deleted file mode 100644 index 0c0ec191f..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Not.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Or 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Or 2.png deleted file mode 100644 index 7cdcc9817..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Or 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Or.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Or.png deleted file mode 100644 index 7cdcc9817..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/case/Or.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/And 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/And 2.png deleted file mode 100644 index 5302beeaa..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/And 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/And.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/And.png deleted file mode 100644 index 5302beeaa..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/And.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Atomic 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Atomic 2.png deleted file mode 100644 index 964ebb7b3..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Atomic 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Atomic.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Atomic.png deleted file mode 100644 index 964ebb7b3..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Atomic.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Biconditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Biconditional 2.png deleted file mode 100644 index 4415aa4c0..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Biconditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Biconditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Biconditional.png deleted file mode 100644 index 4415aa4c0..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Biconditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Conditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Conditional 2.png deleted file mode 100644 index ff5cf7e7d..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Conditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Conditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Conditional.png deleted file mode 100644 index ff5cf7e7d..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Conditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Not 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Not 2.png deleted file mode 100644 index 76060d8f0..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Not 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Not.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Not.png deleted file mode 100644 index 76060d8f0..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Not.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Or 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Or 2.png deleted file mode 100644 index 5957a37db..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Or 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Or.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Or.png deleted file mode 100644 index 5957a37db..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages/contradiction/Or.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/Atomic 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/Atomic 2.png deleted file mode 100644 index e4e495109..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/Atomic 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/Atomic.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/Atomic.png deleted file mode 100644 index e4e495109..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/Atomic.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/And 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/And 2.png deleted file mode 100644 index 9964c2b04..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/And 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/And.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/And.png deleted file mode 100644 index 9964c2b04..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/And.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Biconditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Biconditional 2.png deleted file mode 100644 index 8c209e3be..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Biconditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Biconditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Biconditional.png deleted file mode 100644 index 8c209e3be..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Biconditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Conditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Conditional 2.png deleted file mode 100644 index 5187733e9..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Conditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Conditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Conditional.png deleted file mode 100644 index 5187733e9..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Conditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Not 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Not 2.png deleted file mode 100644 index 5f569fb49..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Not 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Not.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Not.png deleted file mode 100644 index 5f569fb49..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Not.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Or 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Or 2.png deleted file mode 100644 index 80330bfa9..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Or 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Or.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Or.png deleted file mode 100644 index 80330bfa9..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/elimination/Or.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/And 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/And 2.png deleted file mode 100644 index 6c51d528a..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/And 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/And.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/And.png deleted file mode 100644 index 6c51d528a..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/And.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Biconditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Biconditional 2.png deleted file mode 100644 index 9c9aafc78..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Biconditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Biconditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Biconditional.png deleted file mode 100644 index 9c9aafc78..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Biconditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Conditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Conditional 2.png deleted file mode 100644 index ac433c0d0..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Conditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Conditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Conditional.png deleted file mode 100644 index ac433c0d0..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Conditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Not 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Not 2.png deleted file mode 100644 index 98267cf25..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Not 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Not.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Not.png deleted file mode 100644 index 98267cf25..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Not.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Or 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Or 2.png deleted file mode 100644 index bdc92d8f2..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Or 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Or.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Or.png deleted file mode 100644 index bdc92d8f2..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/basic/introduction/Or.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/And 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/And 2.png deleted file mode 100644 index 943d6da74..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/And 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/And.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/And.png deleted file mode 100644 index 943d6da74..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/And.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Atomic 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Atomic 2.png deleted file mode 100644 index f4069a56a..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Atomic 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Atomic.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Atomic.png deleted file mode 100644 index f4069a56a..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Atomic.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Biconditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Biconditional 2.png deleted file mode 100644 index 06ed6b263..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Biconditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Biconditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Biconditional.png deleted file mode 100644 index 06ed6b263..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Biconditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Conditional 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Conditional 2.png deleted file mode 100644 index 573c7a95d..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Conditional 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Conditional.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Conditional.png deleted file mode 100644 index 573c7a95d..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Conditional.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Not 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Not 2.png deleted file mode 100644 index 489728a55..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Not 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Not.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Not.png deleted file mode 100644 index 489728a55..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Not.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Or 2.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Or 2.png deleted file mode 100644 index d2464e804..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Or 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Or.png b/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Or.png deleted file mode 100644 index d2464e804..000000000 Binary files a/bin/main/edu/rpi/legup/images/shorttruthtable/ruleimages_old/contradiction/Or.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/skyscraper/DuplicateNumber 2.png b/bin/main/edu/rpi/legup/images/skyscraper/DuplicateNumber 2.png deleted file mode 100644 index 64fb4fc86..000000000 Binary files a/bin/main/edu/rpi/legup/images/skyscraper/DuplicateNumber 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/skyscraper/DuplicateNumber.png b/bin/main/edu/rpi/legup/images/skyscraper/DuplicateNumber.png deleted file mode 100644 index 64fb4fc86..000000000 Binary files a/bin/main/edu/rpi/legup/images/skyscraper/DuplicateNumber.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/skyscraper/LastNumber 2.png b/bin/main/edu/rpi/legup/images/skyscraper/LastNumber 2.png deleted file mode 100644 index 1c219e328..000000000 Binary files a/bin/main/edu/rpi/legup/images/skyscraper/LastNumber 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/skyscraper/LastNumber.png b/bin/main/edu/rpi/legup/images/skyscraper/LastNumber.png deleted file mode 100644 index 1c219e328..000000000 Binary files a/bin/main/edu/rpi/legup/images/skyscraper/LastNumber.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/skyscraper/PossibleContents 2.png b/bin/main/edu/rpi/legup/images/skyscraper/PossibleContents 2.png deleted file mode 100644 index 7eaee5d06..000000000 Binary files a/bin/main/edu/rpi/legup/images/skyscraper/PossibleContents 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/skyscraper/PossibleContents.png b/bin/main/edu/rpi/legup/images/skyscraper/PossibleContents.png deleted file mode 100644 index 7eaee5d06..000000000 Binary files a/bin/main/edu/rpi/legup/images/skyscraper/PossibleContents.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/AdvancedDeduction 2.png b/bin/main/edu/rpi/legup/images/sudoku/AdvancedDeduction 2.png deleted file mode 100644 index d51538baf..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/AdvancedDeduction 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/AdvancedDeduction.png b/bin/main/edu/rpi/legup/images/sudoku/AdvancedDeduction.png deleted file mode 100644 index d51538baf..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/AdvancedDeduction.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/NoSolution 2.png b/bin/main/edu/rpi/legup/images/sudoku/NoSolution 2.png deleted file mode 100644 index 8b99c3316..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/NoSolution 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/NoSolution.png b/bin/main/edu/rpi/legup/images/sudoku/NoSolution.png deleted file mode 100644 index 8b99c3316..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/NoSolution.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/PossibleValues 2.png b/bin/main/edu/rpi/legup/images/sudoku/PossibleValues 2.png deleted file mode 100644 index 30198ec07..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/PossibleValues 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/PossibleValues.png b/bin/main/edu/rpi/legup/images/sudoku/PossibleValues.png deleted file mode 100644 index 30198ec07..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/PossibleValues.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/RepeatedNumber 2.png b/bin/main/edu/rpi/legup/images/sudoku/RepeatedNumber 2.png deleted file mode 100644 index b49873ff9..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/RepeatedNumber 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/RepeatedNumber.png b/bin/main/edu/rpi/legup/images/sudoku/RepeatedNumber.png deleted file mode 100644 index b49873ff9..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/RepeatedNumber.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/forcedByDeduction 2.png b/bin/main/edu/rpi/legup/images/sudoku/forcedByDeduction 2.png deleted file mode 100644 index 67788813e..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/forcedByDeduction 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/forcedByDeduction.png b/bin/main/edu/rpi/legup/images/sudoku/forcedByDeduction.png deleted file mode 100644 index 67788813e..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/forcedByDeduction.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/forcedByElimination 2.png b/bin/main/edu/rpi/legup/images/sudoku/forcedByElimination 2.png deleted file mode 100644 index b7fe8cc6f..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/forcedByElimination 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/forcedByElimination.png b/bin/main/edu/rpi/legup/images/sudoku/forcedByElimination.png deleted file mode 100644 index b7fe8cc6f..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/forcedByElimination.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/possible_cells_number 2.png b/bin/main/edu/rpi/legup/images/sudoku/possible_cells_number 2.png deleted file mode 100644 index 8d4da1031..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/possible_cells_number 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/possible_cells_number.png b/bin/main/edu/rpi/legup/images/sudoku/possible_cells_number.png deleted file mode 100644 index 8d4da1031..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/possible_cells_number.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/tem 2.png b/bin/main/edu/rpi/legup/images/sudoku/tem 2.png deleted file mode 100644 index 5e56bb7dd..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/tem 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/sudoku/tem.png b/bin/main/edu/rpi/legup/images/sudoku/tem.png deleted file mode 100644 index 5e56bb7dd..000000000 Binary files a/bin/main/edu/rpi/legup/images/sudoku/tem.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/classic/cont_bad 2.png b/bin/main/edu/rpi/legup/images/tree/classic/cont_bad 2.png deleted file mode 100644 index 48dd4e1b1..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/classic/cont_bad 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/classic/cont_bad.png b/bin/main/edu/rpi/legup/images/tree/classic/cont_bad.png deleted file mode 100644 index 48dd4e1b1..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/classic/cont_bad.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/classic/cont_good 2.png b/bin/main/edu/rpi/legup/images/tree/classic/cont_good 2.png deleted file mode 100644 index 47a2383bb..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/classic/cont_good 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/classic/cont_good.png b/bin/main/edu/rpi/legup/images/tree/classic/cont_good.png deleted file mode 100644 index 47a2383bb..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/classic/cont_good.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/classic/leads_to_cont 2.png b/bin/main/edu/rpi/legup/images/tree/classic/leads_to_cont 2.png deleted file mode 100644 index 2c50bd36a..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/classic/leads_to_cont 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/classic/leads_to_cont.png b/bin/main/edu/rpi/legup/images/tree/classic/leads_to_cont.png deleted file mode 100644 index 2c50bd36a..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/classic/leads_to_cont.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/classic/leads_to_soln 2.png b/bin/main/edu/rpi/legup/images/tree/classic/leads_to_soln 2.png deleted file mode 100644 index c1d15f3ec..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/classic/leads_to_soln 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/classic/leads_to_soln.png b/bin/main/edu/rpi/legup/images/tree/classic/leads_to_soln.png deleted file mode 100644 index c1d15f3ec..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/classic/leads_to_soln.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/classic/rule_bad 2.png b/bin/main/edu/rpi/legup/images/tree/classic/rule_bad 2.png deleted file mode 100644 index 62ac67f91..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/classic/rule_bad 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/classic/rule_bad.png b/bin/main/edu/rpi/legup/images/tree/classic/rule_bad.png deleted file mode 100644 index 62ac67f91..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/classic/rule_bad.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/classic/soln 2.png b/bin/main/edu/rpi/legup/images/tree/classic/soln 2.png deleted file mode 100644 index c1d15f3ec..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/classic/soln 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/classic/soln.png b/bin/main/edu/rpi/legup/images/tree/classic/soln.png deleted file mode 100644 index c1d15f3ec..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/classic/soln.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/smiley/cont_bad 2.png b/bin/main/edu/rpi/legup/images/tree/smiley/cont_bad 2.png deleted file mode 100644 index ee466da06..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/smiley/cont_bad 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/smiley/cont_bad.png b/bin/main/edu/rpi/legup/images/tree/smiley/cont_bad.png deleted file mode 100644 index ee466da06..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/smiley/cont_bad.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/smiley/cont_good 2.png b/bin/main/edu/rpi/legup/images/tree/smiley/cont_good 2.png deleted file mode 100644 index bfb38dd07..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/smiley/cont_good 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/smiley/cont_good.png b/bin/main/edu/rpi/legup/images/tree/smiley/cont_good.png deleted file mode 100644 index bfb38dd07..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/smiley/cont_good.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/smiley/leads_to_cont 2.png b/bin/main/edu/rpi/legup/images/tree/smiley/leads_to_cont 2.png deleted file mode 100644 index 4b2cb0dbc..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/smiley/leads_to_cont 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/smiley/leads_to_cont.png b/bin/main/edu/rpi/legup/images/tree/smiley/leads_to_cont.png deleted file mode 100644 index 4b2cb0dbc..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/smiley/leads_to_cont.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/smiley/leads_to_soln 2.png b/bin/main/edu/rpi/legup/images/tree/smiley/leads_to_soln 2.png deleted file mode 100644 index 3cdd09359..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/smiley/leads_to_soln 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/smiley/leads_to_soln.png b/bin/main/edu/rpi/legup/images/tree/smiley/leads_to_soln.png deleted file mode 100644 index 3cdd09359..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/smiley/leads_to_soln.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/smiley/prototype 2.png b/bin/main/edu/rpi/legup/images/tree/smiley/prototype 2.png deleted file mode 100644 index b28b6af5d..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/smiley/prototype 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/smiley/prototype.png b/bin/main/edu/rpi/legup/images/tree/smiley/prototype.png deleted file mode 100644 index b28b6af5d..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/smiley/prototype.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/smiley/soln 2.png b/bin/main/edu/rpi/legup/images/tree/smiley/soln 2.png deleted file mode 100644 index 0456fe29c..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/smiley/soln 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/tree/smiley/soln.png b/bin/main/edu/rpi/legup/images/tree/smiley/soln.png deleted file mode 100644 index 0456fe29c..000000000 Binary files a/bin/main/edu/rpi/legup/images/tree/smiley/soln.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/NewTentLink 2.png b/bin/main/edu/rpi/legup/images/treetent/NewTentLink 2.png deleted file mode 100644 index 89d653982..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/NewTentLink 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/NewTentLink.png b/bin/main/edu/rpi/legup/images/treetent/NewTentLink.png deleted file mode 100644 index 89d653982..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/NewTentLink.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/NewTreeLink 2.png b/bin/main/edu/rpi/legup/images/treetent/NewTreeLink 2.png deleted file mode 100644 index 2c7e7eff0..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/NewTreeLink 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/NewTreeLink.png b/bin/main/edu/rpi/legup/images/treetent/NewTreeLink.png deleted file mode 100644 index 2c7e7eff0..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/NewTreeLink.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/annotate_grass 2.png b/bin/main/edu/rpi/legup/images/treetent/annotate_grass 2.png deleted file mode 100644 index 8742da43b..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/annotate_grass 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/annotate_grass.png b/bin/main/edu/rpi/legup/images/treetent/annotate_grass.png deleted file mode 100644 index 8742da43b..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/annotate_grass.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/annotate_tent 2.png b/bin/main/edu/rpi/legup/images/treetent/annotate_tent 2.png deleted file mode 100644 index f7fdc4f2d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/annotate_tent 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/annotate_tent.png b/bin/main/edu/rpi/legup/images/treetent/annotate_tent.png deleted file mode 100644 index f7fdc4f2d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/annotate_tent.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/aroundTent 2.png b/bin/main/edu/rpi/legup/images/treetent/aroundTent 2.png deleted file mode 100644 index f57d4d103..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/aroundTent 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/aroundTent.png b/bin/main/edu/rpi/legup/images/treetent/aroundTent.png deleted file mode 100644 index f57d4d103..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/aroundTent.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/caseLinkTent 2.png b/bin/main/edu/rpi/legup/images/treetent/caseLinkTent 2.png deleted file mode 100644 index 278c14d1f..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/caseLinkTent 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/caseLinkTent.png b/bin/main/edu/rpi/legup/images/treetent/caseLinkTent.png deleted file mode 100644 index 278c14d1f..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/caseLinkTent.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/caseLinkTree 2.png b/bin/main/edu/rpi/legup/images/treetent/caseLinkTree 2.png deleted file mode 100644 index 819f507d6..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/caseLinkTree 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/caseLinkTree.png b/bin/main/edu/rpi/legup/images/treetent/caseLinkTree.png deleted file mode 100644 index 819f507d6..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/caseLinkTree.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/caseLinkTree_full 2.png b/bin/main/edu/rpi/legup/images/treetent/caseLinkTree_full 2.png deleted file mode 100644 index 687da3847..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/caseLinkTree_full 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/caseLinkTree_full.png b/bin/main/edu/rpi/legup/images/treetent/caseLinkTree_full.png deleted file mode 100644 index 687da3847..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/caseLinkTree_full.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/caseTentOrGrass 2.png b/bin/main/edu/rpi/legup/images/treetent/caseTentOrGrass 2.png deleted file mode 100644 index e7c190287..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/caseTentOrGrass 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/caseTentOrGrass.png b/bin/main/edu/rpi/legup/images/treetent/caseTentOrGrass.png deleted file mode 100644 index e7c190287..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/caseTentOrGrass.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/case_colcount 2.png b/bin/main/edu/rpi/legup/images/treetent/case_colcount 2.png deleted file mode 100644 index 1f0bfd0cf..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/case_colcount 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/case_colcount.png b/bin/main/edu/rpi/legup/images/treetent/case_colcount.png deleted file mode 100644 index 1f0bfd0cf..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/case_colcount.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/case_rowcount 2.png b/bin/main/edu/rpi/legup/images/treetent/case_rowcount 2.png deleted file mode 100644 index 5e0dcd00f..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/case_rowcount 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/case_rowcount.png b/bin/main/edu/rpi/legup/images/treetent/case_rowcount.png deleted file mode 100644 index 5e0dcd00f..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/case_rowcount.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/contra_NoTentForTree 2.png b/bin/main/edu/rpi/legup/images/treetent/contra_NoTentForTree 2.png deleted file mode 100644 index d8e6f4917..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/contra_NoTentForTree 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/contra_NoTentForTree.png b/bin/main/edu/rpi/legup/images/treetent/contra_NoTentForTree.png deleted file mode 100644 index d8e6f4917..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/contra_NoTentForTree.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/contra_NoTreeForTent 2.png b/bin/main/edu/rpi/legup/images/treetent/contra_NoTreeForTent 2.png deleted file mode 100644 index e9d8e1293..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/contra_NoTreeForTent 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/contra_NoTreeForTent.png b/bin/main/edu/rpi/legup/images/treetent/contra_NoTreeForTent.png deleted file mode 100644 index e9d8e1293..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/contra_NoTreeForTent.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/contra_adjacentTents 2.png b/bin/main/edu/rpi/legup/images/treetent/contra_adjacentTents 2.png deleted file mode 100644 index 94a6c6950..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/contra_adjacentTents 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/contra_adjacentTents.png b/bin/main/edu/rpi/legup/images/treetent/contra_adjacentTents.png deleted file mode 100644 index 94a6c6950..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/contra_adjacentTents.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/contra_miscount 2.png b/bin/main/edu/rpi/legup/images/treetent/contra_miscount 2.png deleted file mode 100644 index c648d1014..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/contra_miscount 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/contra_miscount.png b/bin/main/edu/rpi/legup/images/treetent/contra_miscount.png deleted file mode 100644 index c648d1014..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/contra_miscount.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/finishGrass 2.png b/bin/main/edu/rpi/legup/images/treetent/finishGrass 2.png deleted file mode 100644 index 9c1508159..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/finishGrass 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/finishGrass.png b/bin/main/edu/rpi/legup/images/treetent/finishGrass.png deleted file mode 100644 index 9c1508159..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/finishGrass.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/finishTent 2.png b/bin/main/edu/rpi/legup/images/treetent/finishTent 2.png deleted file mode 100644 index 67831e02b..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/finishTent 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/finishTent.png b/bin/main/edu/rpi/legup/images/treetent/finishTent.png deleted file mode 100644 index 67831e02b..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/finishTent.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/grass 2.png b/bin/main/edu/rpi/legup/images/treetent/grass 2.png deleted file mode 100644 index 5f220597c..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/grass 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/grass.png b/bin/main/edu/rpi/legup/images/treetent/grass.png deleted file mode 100644 index 5f220597c..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/grass.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/noTreesAround 2.png b/bin/main/edu/rpi/legup/images/treetent/noTreesAround 2.png deleted file mode 100644 index acf9b337d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/noTreesAround 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/noTreesAround.png b/bin/main/edu/rpi/legup/images/treetent/noTreesAround.png deleted file mode 100644 index acf9b337d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/noTreesAround.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink 2.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink 2.png deleted file mode 100644 index 526b0dd36..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink.png deleted file mode 100644 index 526b0dd36..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink1 2.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink1 2.png deleted file mode 100644 index 85e76e1b1..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink1 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink1.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink1.png deleted file mode 100644 index 85e76e1b1..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink1.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink2 2.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink2 2.png deleted file mode 100644 index f5566921b..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink2 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink2.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink2.png deleted file mode 100644 index f5566921b..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink3 2.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink3 2.png deleted file mode 100644 index 08596cdcf..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink3 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink3.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink3.png deleted file mode 100644 index 08596cdcf..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTentLink3.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink 2.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink 2.png deleted file mode 100644 index d0f3922f4..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink.png deleted file mode 100644 index d0f3922f4..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink1 2.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink1 2.png deleted file mode 100644 index cf099fa2d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink1 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink1.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink1.png deleted file mode 100644 index cf099fa2d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink1.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink2 2.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink2 2.png deleted file mode 100644 index d84e9411b..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink2 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink2.png b/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink2.png deleted file mode 100644 index d84e9411b..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/NewTreeLink2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/aroundTent 2.png b/bin/main/edu/rpi/legup/images/treetent/old/aroundTent 2.png deleted file mode 100644 index d017c4f9a..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/aroundTent 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/aroundTent.png b/bin/main/edu/rpi/legup/images/treetent/old/aroundTent.png deleted file mode 100644 index d017c4f9a..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/aroundTent.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/aroundTent1 2.png b/bin/main/edu/rpi/legup/images/treetent/old/aroundTent1 2.png deleted file mode 100644 index 190b1641b..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/aroundTent1 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/aroundTent1.png b/bin/main/edu/rpi/legup/images/treetent/old/aroundTent1.png deleted file mode 100644 index 190b1641b..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/aroundTent1.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTent 2.png b/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTent 2.png deleted file mode 100644 index cc270abb8..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTent 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTent.png b/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTent.png deleted file mode 100644 index cc270abb8..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTent.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTent1 2.png b/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTent1 2.png deleted file mode 100644 index 19405e7a1..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTent1 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTent1.png b/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTent1.png deleted file mode 100644 index 19405e7a1..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTent1.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTree 2.png b/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTree 2.png deleted file mode 100644 index ba5bb5f54..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTree 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTree.png b/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTree.png deleted file mode 100644 index ba5bb5f54..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTree.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTree1 2.png b/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTree1 2.png deleted file mode 100644 index 808bb8325..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTree1 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTree1.png b/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTree1.png deleted file mode 100644 index 808bb8325..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/caseLinkTree1.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/case_colcount 2.png b/bin/main/edu/rpi/legup/images/treetent/old/case_colcount 2.png deleted file mode 100644 index 260be0b52..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/case_colcount 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/case_colcount.png b/bin/main/edu/rpi/legup/images/treetent/old/case_colcount.png deleted file mode 100644 index 260be0b52..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/case_colcount.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/case_colcount1 2.png b/bin/main/edu/rpi/legup/images/treetent/old/case_colcount1 2.png deleted file mode 100644 index 42ce84e22..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/case_colcount1 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/case_colcount1.png b/bin/main/edu/rpi/legup/images/treetent/old/case_colcount1.png deleted file mode 100644 index 42ce84e22..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/case_colcount1.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/case_rowcount 2.png b/bin/main/edu/rpi/legup/images/treetent/old/case_rowcount 2.png deleted file mode 100644 index 192142f6d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/case_rowcount 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/case_rowcount.png b/bin/main/edu/rpi/legup/images/treetent/old/case_rowcount.png deleted file mode 100644 index 192142f6d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/case_rowcount.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/case_rowcount1 2.png b/bin/main/edu/rpi/legup/images/treetent/old/case_rowcount1 2.png deleted file mode 100644 index 27117a8ab..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/case_rowcount1 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/case_rowcount1.png b/bin/main/edu/rpi/legup/images/treetent/old/case_rowcount1.png deleted file mode 100644 index 27117a8ab..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/case_rowcount1.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_NoTreeForTent 2.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_NoTreeForTent 2.png deleted file mode 100644 index cc21f716a..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_NoTreeForTent 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_NoTreeForTent.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_NoTreeForTent.png deleted file mode 100644 index cc21f716a..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_NoTreeForTent.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_adjacentTents 2.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_adjacentTents 2.png deleted file mode 100644 index a10f394d8..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_adjacentTents 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_adjacentTents.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_adjacentTents.png deleted file mode 100644 index a10f394d8..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_adjacentTents.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_adjacentTents1 2.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_adjacentTents1 2.png deleted file mode 100644 index 867b36945..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_adjacentTents1 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_adjacentTents1.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_adjacentTents1.png deleted file mode 100644 index 867b36945..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_adjacentTents1.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_miscount 2.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_miscount 2.png deleted file mode 100644 index 07598b2bc..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_miscount 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_miscount.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_miscount.png deleted file mode 100644 index 07598b2bc..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_miscount.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_noNeighbors 2.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_noNeighbors 2.png deleted file mode 100644 index a1366b98d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_noNeighbors 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_noNeighbors.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_noNeighbors.png deleted file mode 100644 index a1366b98d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_noNeighbors.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_noNeighbors1 2.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_noNeighbors1 2.png deleted file mode 100644 index a3178ad29..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_noNeighbors1 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_noNeighbors1.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_noNeighbors1.png deleted file mode 100644 index a3178ad29..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_noNeighbors1.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_notree 2.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_notree 2.png deleted file mode 100644 index 3311ffebc..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_notree 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_notree.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_notree.png deleted file mode 100644 index 3311ffebc..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_notree.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_notree2 2.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_notree2 2.png deleted file mode 100644 index 9f146415a..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_notree2 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/contra_notree2.png b/bin/main/edu/rpi/legup/images/treetent/old/contra_notree2.png deleted file mode 100644 index 9f146415a..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/contra_notree2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/finishGrass 2.png b/bin/main/edu/rpi/legup/images/treetent/old/finishGrass 2.png deleted file mode 100644 index 53b22e61d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/finishGrass 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/finishGrass.png b/bin/main/edu/rpi/legup/images/treetent/old/finishGrass.png deleted file mode 100644 index 53b22e61d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/finishGrass.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/finishTent 2.png b/bin/main/edu/rpi/legup/images/treetent/old/finishTent 2.png deleted file mode 100644 index a359bc23d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/finishTent 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/finishTent.png b/bin/main/edu/rpi/legup/images/treetent/old/finishTent.png deleted file mode 100644 index a359bc23d..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/finishTent.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/noTreesAround 2.png b/bin/main/edu/rpi/legup/images/treetent/old/noTreesAround 2.png deleted file mode 100644 index 5bf3151e2..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/noTreesAround 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/noTreesAround.png b/bin/main/edu/rpi/legup/images/treetent/old/noTreesAround.png deleted file mode 100644 index 5bf3151e2..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/noTreesAround.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/noTreesAround1 2.png b/bin/main/edu/rpi/legup/images/treetent/old/noTreesAround1 2.png deleted file mode 100644 index df64010d3..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/noTreesAround1 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/noTreesAround1.png b/bin/main/edu/rpi/legup/images/treetent/old/noTreesAround1.png deleted file mode 100644 index df64010d3..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/noTreesAround1.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/oneTentPosition 2.png b/bin/main/edu/rpi/legup/images/treetent/old/oneTentPosition 2.png deleted file mode 100644 index 62ffc9e85..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/oneTentPosition 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/oneTentPosition.png b/bin/main/edu/rpi/legup/images/treetent/old/oneTentPosition.png deleted file mode 100644 index 62ffc9e85..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/oneTentPosition.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/oneTentPosition1 2.png b/bin/main/edu/rpi/legup/images/treetent/old/oneTentPosition1 2.png deleted file mode 100644 index f8e78a807..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/oneTentPosition1 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/old/oneTentPosition1.png b/bin/main/edu/rpi/legup/images/treetent/old/oneTentPosition1.png deleted file mode 100644 index f8e78a807..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/old/oneTentPosition1.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/oneTentPosition 2.png b/bin/main/edu/rpi/legup/images/treetent/oneTentPosition 2.png deleted file mode 100644 index dcfeebacd..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/oneTentPosition 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/oneTentPosition.png b/bin/main/edu/rpi/legup/images/treetent/oneTentPosition.png deleted file mode 100644 index dcfeebacd..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/oneTentPosition.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/tent 2.png b/bin/main/edu/rpi/legup/images/treetent/tent 2.png deleted file mode 100644 index 2263e0290..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/tent 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/tent.png b/bin/main/edu/rpi/legup/images/treetent/tent.png deleted file mode 100644 index 2263e0290..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/tent.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/too_few_tents 2.png b/bin/main/edu/rpi/legup/images/treetent/too_few_tents 2.png deleted file mode 100644 index c648d1014..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/too_few_tents 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/too_few_tents.png b/bin/main/edu/rpi/legup/images/treetent/too_few_tents.png deleted file mode 100644 index c648d1014..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/too_few_tents.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/too_many_tents 2.png b/bin/main/edu/rpi/legup/images/treetent/too_many_tents 2.png deleted file mode 100644 index 80356d7b4..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/too_many_tents 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/too_many_tents.png b/bin/main/edu/rpi/legup/images/treetent/too_many_tents.png deleted file mode 100644 index 80356d7b4..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/too_many_tents.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/tree 2.png b/bin/main/edu/rpi/legup/images/treetent/tree 2.png deleted file mode 100644 index 38fc9e728..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/tree 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/tree.png b/bin/main/edu/rpi/legup/images/treetent/tree.png deleted file mode 100644 index 38fc9e728..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/tree.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/update_template_wip 2.psd b/bin/main/edu/rpi/legup/images/treetent/update_template_wip 2.psd deleted file mode 100644 index c04771d1e..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/update_template_wip 2.psd and /dev/null differ diff --git a/bin/main/edu/rpi/legup/images/treetent/update_template_wip.psd b/bin/main/edu/rpi/legup/images/treetent/update_template_wip.psd deleted file mode 100644 index c04771d1e..000000000 Binary files a/bin/main/edu/rpi/legup/images/treetent/update_template_wip.psd and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/add 2.png b/bin/main/edu/rpi/legup/imgs/add 2.png deleted file mode 100644 index 3e7036325..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/add 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/add.png b/bin/main/edu/rpi/legup/imgs/add.png deleted file mode 100644 index 3e7036325..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/add.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/back_arrow 2.png b/bin/main/edu/rpi/legup/imgs/back_arrow 2.png deleted file mode 100644 index 4a04f650b..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/back_arrow 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/back_arrow.png b/bin/main/edu/rpi/legup/imgs/back_arrow.png deleted file mode 100644 index 4a04f650b..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/back_arrow.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/computer 2.png b/bin/main/edu/rpi/legup/imgs/computer 2.png deleted file mode 100644 index c44e19581..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/computer 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/computer.png b/bin/main/edu/rpi/legup/imgs/computer.png deleted file mode 100644 index c44e19581..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/computer.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/details 2.png b/bin/main/edu/rpi/legup/imgs/details 2.png deleted file mode 100644 index 04902e52d..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/details 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/details.png b/bin/main/edu/rpi/legup/imgs/details.png deleted file mode 100644 index 04902e52d..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/details.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/down_arrow 2.png b/bin/main/edu/rpi/legup/imgs/down_arrow 2.png deleted file mode 100644 index bb97d6e39..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/down_arrow 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/down_arrow.png b/bin/main/edu/rpi/legup/imgs/down_arrow.png deleted file mode 100644 index bb97d6e39..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/down_arrow.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/file 2.png b/bin/main/edu/rpi/legup/imgs/file 2.png deleted file mode 100644 index 144463984..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/file 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/file.png b/bin/main/edu/rpi/legup/imgs/file.png deleted file mode 100644 index 144463984..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/file.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/floppy_drive 2.png b/bin/main/edu/rpi/legup/imgs/floppy_drive 2.png deleted file mode 100644 index 0c878999c..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/floppy_drive 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/floppy_drive.png b/bin/main/edu/rpi/legup/imgs/floppy_drive.png deleted file mode 100644 index 0c878999c..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/floppy_drive.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/folder 2.png b/bin/main/edu/rpi/legup/imgs/folder 2.png deleted file mode 100644 index 887082840..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/folder 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/folder.png b/bin/main/edu/rpi/legup/imgs/folder.png deleted file mode 100644 index 887082840..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/folder.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/hard_drive 2.png b/bin/main/edu/rpi/legup/imgs/hard_drive 2.png deleted file mode 100644 index cf1ef42fe..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/hard_drive 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/hard_drive.png b/bin/main/edu/rpi/legup/imgs/hard_drive.png deleted file mode 100644 index cf1ef42fe..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/hard_drive.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/home 2.png b/bin/main/edu/rpi/legup/imgs/home 2.png deleted file mode 100644 index aa43ddae0..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/home 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/home.png b/bin/main/edu/rpi/legup/imgs/home.png deleted file mode 100644 index aa43ddae0..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/home.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/list 2.png b/bin/main/edu/rpi/legup/imgs/list 2.png deleted file mode 100644 index adf5bd9ee..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/list 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/list.png b/bin/main/edu/rpi/legup/imgs/list.png deleted file mode 100644 index adf5bd9ee..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/list.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/new_folder 2.png b/bin/main/edu/rpi/legup/imgs/new_folder 2.png deleted file mode 100644 index d7ac4fc2c..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/new_folder 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/new_folder.png b/bin/main/edu/rpi/legup/imgs/new_folder.png deleted file mode 100644 index d7ac4fc2c..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/new_folder.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/outlined_checked_box 2.png b/bin/main/edu/rpi/legup/imgs/outlined_checked_box 2.png deleted file mode 100644 index cf5a347c5..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/outlined_checked_box 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/outlined_checked_box.png b/bin/main/edu/rpi/legup/imgs/outlined_checked_box.png deleted file mode 100644 index cf5a347c5..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/outlined_checked_box.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/painted_checked_box 2.png b/bin/main/edu/rpi/legup/imgs/painted_checked_box 2.png deleted file mode 100644 index bf1ee13ae..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/painted_checked_box 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/painted_checked_box.png b/bin/main/edu/rpi/legup/imgs/painted_checked_box.png deleted file mode 100644 index bf1ee13ae..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/painted_checked_box.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/radio_button_off 2.png b/bin/main/edu/rpi/legup/imgs/radio_button_off 2.png deleted file mode 100644 index 2c6901b7a..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/radio_button_off 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/radio_button_off.png b/bin/main/edu/rpi/legup/imgs/radio_button_off.png deleted file mode 100644 index 2c6901b7a..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/radio_button_off.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/radio_button_on 2.png b/bin/main/edu/rpi/legup/imgs/radio_button_on 2.png deleted file mode 100644 index 8c54bf6bd..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/radio_button_on 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/radio_button_on.png b/bin/main/edu/rpi/legup/imgs/radio_button_on.png deleted file mode 100644 index 8c54bf6bd..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/radio_button_on.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/remove 2.png b/bin/main/edu/rpi/legup/imgs/remove 2.png deleted file mode 100644 index 14dc28383..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/remove 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/remove.png b/bin/main/edu/rpi/legup/imgs/remove.png deleted file mode 100644 index 14dc28383..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/remove.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/right_arrow 2.png b/bin/main/edu/rpi/legup/imgs/right_arrow 2.png deleted file mode 100644 index 39fd3248e..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/right_arrow 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/right_arrow.png b/bin/main/edu/rpi/legup/imgs/right_arrow.png deleted file mode 100644 index 39fd3248e..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/right_arrow.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/toggle_off 2.png b/bin/main/edu/rpi/legup/imgs/toggle_off 2.png deleted file mode 100644 index b35035ea9..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/toggle_off 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/toggle_off.png b/bin/main/edu/rpi/legup/imgs/toggle_off.png deleted file mode 100644 index b35035ea9..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/toggle_off.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/toggle_on 2.png b/bin/main/edu/rpi/legup/imgs/toggle_on 2.png deleted file mode 100644 index 12329eab1..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/toggle_on 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/toggle_on.png b/bin/main/edu/rpi/legup/imgs/toggle_on.png deleted file mode 100644 index 12329eab1..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/toggle_on.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/unchecked_box 2.png b/bin/main/edu/rpi/legup/imgs/unchecked_box 2.png deleted file mode 100644 index 6864dd299..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/unchecked_box 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/unchecked_box.png b/bin/main/edu/rpi/legup/imgs/unchecked_box.png deleted file mode 100644 index 6864dd299..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/unchecked_box.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/up_arrow 2.png b/bin/main/edu/rpi/legup/imgs/up_arrow 2.png deleted file mode 100644 index 90c7ba731..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/up_arrow 2.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/imgs/up_arrow.png b/bin/main/edu/rpi/legup/imgs/up_arrow.png deleted file mode 100644 index 90c7ba731..000000000 Binary files a/bin/main/edu/rpi/legup/imgs/up_arrow.png and /dev/null differ diff --git a/bin/main/edu/rpi/legup/legup/config b/bin/main/edu/rpi/legup/legup/config index 3937fbc3b..cfa1ebeac 100644 --- a/bin/main/edu/rpi/legup/legup/config +++ b/bin/main/edu/rpi/legup/legup/config @@ -1,14 +1,43 @@ - + - - - - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/legup/config 2 b/bin/main/edu/rpi/legup/legup/config 2 deleted file mode 100644 index 3937fbc3b..000000000 --- a/bin/main/edu/rpi/legup/legup/config 2 +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/bin/main/edu/rpi/legup/legup/main_window 2.fxml b/bin/main/edu/rpi/legup/legup/main_window 2.fxml deleted file mode 100644 index 73a531160..000000000 --- a/bin/main/edu/rpi/legup/legup/main_window 2.fxml +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -