Skip to content

Commit da93ca3

Browse files
committed
remove unused init
1 parent dc0c0db commit da93ca3

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

firedrake/mesh.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4744,10 +4744,6 @@ def topological(self):
47444744
This is to ensure consistent naming for some multigrid codes."""
47454745
return self.topology
47464746

4747-
def init(self):
4748-
for m in self._meshes:
4749-
m.init()
4750-
47514747
def __eq__(self, other):
47524748
if type(other) != type(self):
47534749
return False
@@ -4837,10 +4833,6 @@ def __init__(self, meshes):
48374833
self.comm = meshes[0].comm
48384834
self._comm = internal_comm(self.comm, self)
48394835

4840-
def init(self):
4841-
for m in self._meshes:
4842-
m.init()
4843-
48444836
@property
48454837
def topology(self):
48464838
"""The underlying mesh topology object."""

0 commit comments

Comments
 (0)