All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.whispersystems.libaxolotl.j2me.Arrays Maven / Gradle / Ivy

The newest version!
package org.whispersystems.libaxolotl.j2me;

public class Arrays {

  public static boolean equals(byte[] a, byte[] a2) {
    if (a==a2)
      return true;
    if (a==null || a2==null)
      return false;

    int length = a.length;
    if (a2.length != length)
      return false;

    for (int i=0; i




© 2015 - 2025 Weber Informatics LLC | Privacy Policy