"private static" aus der Doku entfernt.
Change-Id: I49189f22c0647469366698afa66681e18a41f4de
diff --git a/doc/concepts/effizienz b/doc/concepts/effizienz
index 3f99c48..24042fc 100644
--- a/doc/concepts/effizienz
+++ b/doc/concepts/effizienz
@@ -142,7 +142,7 @@
statt: filter(users(),
lambda(({'x}), ({#'call_other,'x,
"QueryProp",P_SECOND})));
- lieber: private static int _isasec(object o) {
+ lieber: private int _isasec(object o) {
return o->QueryProp(P_SECOND);
}
...
@@ -195,7 +195,7 @@
statt: t=allocate(0);
for (i=sizeof(a1); i--; )
if (member(a2,a1[i])>=0) t+=({a1[i]});
- lieber: private static mixed _is_member(mixed x, a) {
+ lieber: private mixed _is_member(mixed x, a) {
if (member(a,x)>=0) return 1;
else return 0;
}
@@ -219,4 +219,4 @@
SIEHE AUCH:
memory, objekte, mudrechner, goodstyle, ticks
- 6. Sep 2012 Gloinson
+Letzte Aenderung: 22.12.2016, Bugfix