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

Commit 0d9a16cb authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Add implementation of getInterfaceHash() am: 2e797cd4 am: 76dec421

Change-Id: Ie3f315e24a0eba37368105232f069cc7bba2df6d
parents 92a868f0 76dec421
Loading
Loading
Loading
Loading
+5 −0
Original line number Original line Diff line number Diff line
@@ -45,6 +45,11 @@ public interface OnBlobRetrievedListener {
            public int getInterfaceVersion() {
            public int getInterfaceVersion() {
                return this.VERSION;
                return this.VERSION;
            }
            }

            @Override
            public String getInterfaceHash() {
                return this.HASH;
            }
        };
        };
    }
    }
}
}
+5 −0
Original line number Original line Diff line number Diff line
@@ -45,6 +45,11 @@ public interface OnL2KeyResponseListener {
            public int getInterfaceVersion() {
            public int getInterfaceVersion() {
                return this.VERSION;
                return this.VERSION;
            }
            }

            @Override
            public String getInterfaceHash() {
                return this.HASH;
            }
        };
        };
    }
    }
}
}
+5 −0
Original line number Original line Diff line number Diff line
@@ -49,6 +49,11 @@ public interface OnNetworkAttributesRetrievedListener {
            public int getInterfaceVersion() {
            public int getInterfaceVersion() {
                return this.VERSION;
                return this.VERSION;
            }
            }

            @Override
            public String getInterfaceHash() {
                return this.HASH;
            }
        };
        };
    }
    }
}
}
+5 −0
Original line number Original line Diff line number Diff line
@@ -48,6 +48,11 @@ public interface OnSameL3NetworkResponseListener {
            public int getInterfaceVersion() {
            public int getInterfaceVersion() {
                return this.VERSION;
                return this.VERSION;
            }
            }

            @Override
            public String getInterfaceHash() {
                return this.HASH;
            }
        };
        };
    }
    }
}
}
+5 −0
Original line number Original line Diff line number Diff line
@@ -44,6 +44,11 @@ public interface OnStatusListener {
            public int getInterfaceVersion() {
            public int getInterfaceVersion() {
                return this.VERSION;
                return this.VERSION;
            }
            }

            @Override
            public String getInterfaceHash() {
                return this.HASH;
            }
        };
        };
    }
    }
}
}
Loading