mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-11 01:54:14 +01:00
AndroidGCS bugfix: Missed a break in a case statement.
This commit is contained in:
parent
5eabb1777d
commit
92209f8e42
@ -174,9 +174,10 @@ public class UAVObjectField {
|
|||||||
Integer val = (Integer) getValue(index);
|
Integer val = (Integer) getValue(index);
|
||||||
dataOut.put(val.byteValue());
|
dataOut.put(val.byteValue());
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case STRING:
|
case STRING:
|
||||||
// TODO: Implement strings
|
// TODO: Implement strings
|
||||||
throw new Error("Strings not yet implemented");
|
throw new Error("Strings not yet implemented. Field name: " + getName());
|
||||||
}
|
}
|
||||||
// Done
|
// Done
|
||||||
return getNumBytes();
|
return getNumBytes();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user