Skip to content

Commit 9dad93f

Browse files
committed
Intermediary commit... Lots O' Changes
- Intemediary commit for version 1.0 of the OI class as a universal library - Fixing various repository issues
1 parent 234f33e commit 9dad93f

File tree

4 files changed

+638
-29
lines changed

4 files changed

+638
-29
lines changed

.gitignore

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,17 @@ gradle-app.setting
2525
# Eclipse
2626
*.pydevproject
2727
.metadata
28-
bin/
2928
tmp/
3029
*.tmp
3130
*.bak
3231
*.swp
3332
*~.nib
3433
local.properties
35-
.settings/
36-
.loadpath
34+
//For now, since the two repos are improperly jammed into one, use regex matching to get rid of the excess Eclipse folders in the repo. Once the repos have been seperated, remove the "*" regex matcher.
35+
*.settings/
36+
*.loadpath
37+
*target/
38+
*bin/
3739

3840
# Eclipse Core
3941
.project

Raider/.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</attributes>
1313
</classpathentry>
1414
<classpathentry kind="var" path="networktables" sourcepath="networktables.sources"/>
15-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
15+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
1616
<attributes>
1717
<attribute name="maven.pomderived" value="true"/>
1818
</attributes>
Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
eclipse.preferences.version=1
2-
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
3-
org.eclipse.jdt.core.compiler.compliance=1.5
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
4+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5+
org.eclipse.jdt.core.compiler.compliance=1.8
6+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
8+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
411
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
5-
org.eclipse.jdt.core.compiler.source=1.5
12+
org.eclipse.jdt.core.compiler.source=1.8

0 commit comments

Comments
 (0)