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

com.launchdarkly.sdk.android.DiagnosticId Maven / Gradle / Ivy

package com.launchdarkly.sdk.android;

class DiagnosticId {

    final String diagnosticId;
    final String sdkKeySuffix;

    DiagnosticId(String diagnosticId, String sdkKey) {
        this.diagnosticId = diagnosticId;
        if (sdkKey == null) {
            sdkKeySuffix = null;
        } else {
            this.sdkKeySuffix = sdkKey.substring(Math.max(0, sdkKey.length() - 6));
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy