aboutsummaryrefslogtreecommitdiff
path: root/java/com/android/modules/expresslog/Utils.java
diff options
context:
space:
mode:
authorVova Sharaienko <sharaienko@google.com>2023-04-12 02:15:25 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-04-12 02:15:25 +0000
commit86d9645b9b7e2655cff4726b0fec015d9fa2b341 (patch)
tree2e3e0bdb71edae87bfbf810ccd039320f60d1fa5 /java/com/android/modules/expresslog/Utils.java
parent340a97e3bc1e6c9f2ad0d3c6f5ad5524fb84cb5c (diff)
parentb9b201351dff32e4dc7f3b73d5240c6b33372a5f (diff)
downloadmodules-utils-86d9645b9b7e2655cff4726b0fec015d9fa2b341.tar.gz
[TeX] Added telemetry express utility static lib am: b9b201351d
Original change: https://android-review.googlesource.com/c/platform/frameworks/libs/modules-utils/+/2500657 Change-Id: I867ea4a3d2c68fd0c9a482a1e3b069a2a56989c8 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'java/com/android/modules/expresslog/Utils.java')
-rw-r--r--java/com/android/modules/expresslog/Utils.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/java/com/android/modules/expresslog/Utils.java b/java/com/android/modules/expresslog/Utils.java
new file mode 100644
index 0000000..fde90fc
--- /dev/null
+++ b/java/com/android/modules/expresslog/Utils.java
@@ -0,0 +1,21 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.modules.expresslog;
+
+final class Utils {
+ static native long hashString(String stringToHash);
+}