1
0
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:
James Cotton 2012-08-10 02:00:55 -05:00
parent 4313f1a3cc
commit dec044d0fa

View File

@ -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();