Warning: session_start(): open(/var/lib/php/sessions/sess_po058sq9jide4jjm87dep5ggul, 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 Map nuObjectWithoutArguments_cache = newDangerousWeakHashMap();
static O nuObjectWithoutArguments(S className) ctex {
ret nuObjectWithoutArguments(classForName(className));
}
static A nuObjectWithoutArguments(Class c) ctex {
if (nuObjectWithoutArguments_cache == null)
// in class init
ret (A) nuObjectWithoutArguments_findConstructor(c).newInstance();
Constructor m = nuObjectWithoutArguments_cache.get(c);
if (m == null)
nuObjectWithoutArguments_cache.put(c, m = nuObjectWithoutArguments_findConstructor(c));
return (A) m.newInstance();
}
static Constructor nuObjectWithoutArguments_findConstructor(Class c) {
for (Constructor m : c.getDeclaredConstructors())
if (empty(m.getParameterTypes())) {
m.setAccessible(true);
ret m;
}
fail("No default constructor found in " + c.getName());
}