summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Beattie <mike@ethernal.org>2012-09-07 17:39:25 +1200
committerMike Beattie <mike@ethernal.org>2012-09-07 17:39:25 +1200
commit639f3e5e5171769429eac9e2f17a7b315fd62135 (patch)
tree1832e9810ce44141118844caf5d49c51bb359868
parent369c5e23ac6d65bab4b456ed86737576ac61102f (diff)
altoslib: comment out unused methods
Signed-off-by: Mike Beattie <mike@ethernal.org>
-rw-r--r--altoslib/AltosIgnite.java2
-rw-r--r--altoslib/AltosTelemetryRecordLegacy.java2
2 files changed, 4 insertions, 0 deletions
diff --git a/altoslib/AltosIgnite.java b/altoslib/AltosIgnite.java
index e89f1b65..a48d0b69 100644
--- a/altoslib/AltosIgnite.java
+++ b/altoslib/AltosIgnite.java
@@ -64,6 +64,7 @@ public class AltosIgnite {
}
}
+ /*
private boolean get_string(String line, String label, string_ref s) {
if (line.startsWith(label)) {
String quoted = line.substring(label.length()).trim();
@@ -78,6 +79,7 @@ public class AltosIgnite {
return false;
}
}
+ */
private int status(String status_name) {
if (status_name.equals("unknown"))
diff --git a/altoslib/AltosTelemetryRecordLegacy.java b/altoslib/AltosTelemetryRecordLegacy.java
index 9e75fa2c..21176069 100644
--- a/altoslib/AltosTelemetryRecordLegacy.java
+++ b/altoslib/AltosTelemetryRecordLegacy.java
@@ -392,9 +392,11 @@ public class AltosTelemetryRecordLegacy extends AltosTelemetryRecord {
int[] bytes;
int adjust;
+ /*
private int int8(int i) {
return AltosLib.int8(bytes, i + 1 + adjust);
}
+ */
private int uint8(int i) {
return AltosLib.uint8(bytes, i + 1 + adjust);
}