| Index: lib/html/scripts/systembase.py
|
| diff --git a/lib/html/scripts/systembase.py b/lib/html/scripts/systembase.py
|
| index 956038f413273770b453e84d34b5e099ff3e4ed0..2b653fb924601f49329dba44b099b25a3cbb260c 100644
|
| --- a/lib/html/scripts/systembase.py
|
| +++ b/lib/html/scripts/systembase.py
|
| @@ -131,10 +131,7 @@ class BaseGenerator(object):
|
| for id in sorted(operationsById.keys()):
|
| operations = operationsById[id]
|
| info = AnalyzeOperation(interface, operations)
|
| - if info.IsStatic():
|
| - self.AddStaticOperation(info)
|
| - else:
|
| - self.AddOperation(info)
|
| + self.AddOperation(info)
|
|
|
| def AddSecondaryMembers(self, interface):
|
| # With multiple inheritance, attributes and operations of non-first
|
| @@ -178,9 +175,6 @@ class BaseGenerator(object):
|
| def AddOperation(self, info):
|
| pass
|
|
|
| - def AddStaticOperation(self, info):
|
| - pass
|
| -
|
| def AddSecondaryAttribute(self, interface, attribute):
|
| pass
|
|
|
|
|