Warning: session_start(): open(/var/lib/php/sessions/sess_umjqep7btrlog59fs1odp9k4eu, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static byte[] toByteArray(ByteArrayOutputStream baos) {
ret baos == null ? null : baos.toByteArray();
}
static byte[] toByteArray(Iterator it) {
new ByteBuffer buf;
while (it.hasNext())
buf.add((byte) it.next().intValue());
ret buf.toByteArray();
}
static byte[] toByteArray(O o) {
if (o == null) null;
if (o cast byte[]) ret o;
if (o instanceof Iterator)
ret toByteArray((Iterator) o);
// not sure what else to put here
fail("toByteArray", o);
}