Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7c93839d authored by Laurent Tu's avatar Laurent Tu
Browse files

Revert "Tentative fix for aidl import issue"

Fix build.

This reverts commit 4f115e08.

Change-Id: Ic4f51e3492f54afec5f0eeb48e08491eb47f3c04
parent 7f84ed31
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1348,7 +1348,7 @@ Namespace::Search(const string& name)
    // would be the place to do it, but I don't think the complexity in
    // scoping rules is worth it.
    int N = m_types.size();
    for (int i=N-1; i>=0; i--) {
    for (int i=0; i<N; i++) {
        if (m_types[i]->Name() == name) {
            return m_types[i];
        }