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