Warning: session_start(): open(/var/lib/php/sessions/sess_mporbrqcms2acv48540ic6o9v0, 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 L findMethodsNamed2(O obj, S method, bool staticOnly) {
if (obj == null) ret null;
ret findMethodsNamed2(_getClass(obj), method, staticOnly);
}
static L findMethodsNamed2(Class c, S method, bool staticOnly) {
new L l;
while (c != null) {
for (Method m : c.getDeclaredMethods())
if (m.getName().equals(method) &&
(!staticOnly || (m.getModifiers() & Modifier.STATIC) != 0)) {
m.setAccessible(true);
l.add(m);
}
c = c.getSuperclass();
}
ret l;
}