From: Chris Koeritz Date: Fri, 30 Nov 2018 22:33:22 +0000 (-0500) Subject: new fortune, fixed warnings X-Git-Tag: 2.140.115^2~66 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=4743612f6581bb718476e64845f3df455d107ec5 new fortune, fixed warnings --- diff --git a/infobase/fortunes.dat b/infobase/fortunes.dat index f9fda8d8..fb68f5fe 100644 --- a/infobase/fortunes.dat +++ b/infobase/fortunes.dat @@ -43745,4 +43745,7 @@ it is more descriptive to call it the vital wind force. Prana is the foundational energy of all experience, of all life. -- Tenzin Wangyal Rinpoche and edited by Mark Dahlby, from "The Tibetan Yogas of Dream and Sleep", published by Shambhala Publications +~ +Do they know this kid likes his chemistry set a little too much? + -- The Sopranos diff --git a/kona/lib/org.eclipse.osgi_3.8.0.v20120529-1548.jar b/kona/lib/org.eclipse.osgi_3.8.0.v20120529-1548.jar new file mode 100644 index 00000000..475d403d Binary files /dev/null and b/kona/lib/org.eclipse.osgi_3.8.0.v20120529-1548.jar differ diff --git a/kona/osgi/org.feistymeow.bundle.helloOSGi/.classpath b/kona/osgi/org.feistymeow.bundle.helloOSGi/.classpath index 098194ca..3c38f04d 100644 --- a/kona/osgi/org.feistymeow.bundle.helloOSGi/.classpath +++ b/kona/osgi/org.feistymeow.bundle.helloOSGi/.classpath @@ -1,7 +1,9 @@ - + + + diff --git a/kona/osgi/org.feistymeow.bundle.helloOSGi/.gitignore b/kona/osgi/org.feistymeow.bundle.helloOSGi/.gitignore new file mode 100644 index 00000000..ae3c1726 --- /dev/null +++ b/kona/osgi/org.feistymeow.bundle.helloOSGi/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/kona/osgi/org.feistymeow.bundle.helloOSGi/.settings/org.eclipse.jdt.core.prefs b/kona/osgi/org.feistymeow.bundle.helloOSGi/.settings/org.eclipse.jdt.core.prefs index f42de363..0c68a61d 100644 --- a/kona/osgi/org.feistymeow.bundle.helloOSGi/.settings/org.eclipse.jdt.core.prefs +++ b/kona/osgi/org.feistymeow.bundle.helloOSGi/.settings/org.eclipse.jdt.core.prefs @@ -1,7 +1,7 @@ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 -org.eclipse.jdt.core.compiler.compliance=1.7 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.compliance=1.8 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.source=1.7 +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/kona/osgi/org.feistymeow.bundle.servicesOSGi/.classpath b/kona/osgi/org.feistymeow.bundle.servicesOSGi/.classpath index 098194ca..d8387563 100644 --- a/kona/osgi/org.feistymeow.bundle.servicesOSGi/.classpath +++ b/kona/osgi/org.feistymeow.bundle.servicesOSGi/.classpath @@ -1,7 +1,8 @@ - + + diff --git a/kona/osgi/org.feistymeow.bundle.servicesOSGi/.gitignore b/kona/osgi/org.feistymeow.bundle.servicesOSGi/.gitignore new file mode 100644 index 00000000..ae3c1726 --- /dev/null +++ b/kona/osgi/org.feistymeow.bundle.servicesOSGi/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/kona/osgi/org.feistymeow.bundle.servicesOSGi/.settings/org.eclipse.jdt.core.prefs b/kona/osgi/org.feistymeow.bundle.servicesOSGi/.settings/org.eclipse.jdt.core.prefs index f42de363..0c68a61d 100644 --- a/kona/osgi/org.feistymeow.bundle.servicesOSGi/.settings/org.eclipse.jdt.core.prefs +++ b/kona/osgi/org.feistymeow.bundle.servicesOSGi/.settings/org.eclipse.jdt.core.prefs @@ -1,7 +1,7 @@ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 -org.eclipse.jdt.core.compiler.compliance=1.7 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.compliance=1.8 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.source=1.7 +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/kona/src/org/feistymeow/algorithms/RectangleIntersector.java b/kona/src/org/feistymeow/algorithms/RectangleIntersector.java index e177621f..c2260dcd 100644 --- a/kona/src/org/feistymeow/algorithms/RectangleIntersector.java +++ b/kona/src/org/feistymeow/algorithms/RectangleIntersector.java @@ -5,9 +5,6 @@ import java.util.Arrays; import java.util.Comparator; import java.util.Vector; -import org.feistymeow.algorithms.RectangleIntersector.SortedElement; -import org.feistymeow.algorithms.RectangleIntersector.SortedElementComparator; - /** * reports if any two rectangles in a list intersect. uses screen coordinates. */ @@ -179,11 +176,11 @@ public class RectangleIntersector Vector list2 = new Vector(Arrays.asList(r1, r2)); Vector list3 = new Vector(Arrays.asList(r1, r3, r4)); - RectangleIntersector secto = new RectangleIntersector(); +// RectangleIntersector secto = new RectangleIntersector(); - Vector answer1 = secto.findOverlap(list1); - Vector answer2 = secto.findOverlap(list2); - Vector answer3 = secto.findOverlap(list3); + Vector answer1 = RectangleIntersector.findOverlap(list1); + Vector answer2 = RectangleIntersector.findOverlap(list2); + Vector answer3 = RectangleIntersector.findOverlap(list3); if (answer1 == null) { System.out.println("FAILURE: test 1 did not find intersection in list"); diff --git a/kona/src/org/gffs/io/IOUtils.java b/kona/src/org/gffs/io/IOUtils.java index b71bac17..daa9c423 100644 --- a/kona/src/org/gffs/io/IOUtils.java +++ b/kona/src/org/gffs/io/IOUtils.java @@ -19,7 +19,7 @@ public class IOUtils static final private int BUFFER_SIZE = 1024 * 8; - static private final int COPY_SIZE = 1024 * 8; +// static private final int COPY_SIZE = 1024 * 8; static public void copy(InputStream in, OutputStream out) throws IOException {