From 659b3e7102209590c940d84632959be1540a80a0 Mon Sep 17 00:00:00 2001 From: Protobuf Team Bot Date: Mon, 22 Jan 2024 16:50:21 -0800 Subject: [PATCH] Internal changes. PiperOrigin-RevId: 600609161 --- .../src/main/java/com/google/protobuf/RuntimeVersion.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/core/src/main/java/com/google/protobuf/RuntimeVersion.java b/java/core/src/main/java/com/google/protobuf/RuntimeVersion.java index 2e56f6af5e..a495c7f8dc 100644 --- a/java/core/src/main/java/com/google/protobuf/RuntimeVersion.java +++ b/java/core/src/main/java/com/google/protobuf/RuntimeVersion.java @@ -16,8 +16,6 @@ import java.util.logging.Logger; */ public final class RuntimeVersion { - private static final Logger logger = Logger.getLogger(RuntimeVersion.class.getName()); - /** Indicates the domain of the Protobuf artifact. */ public enum RuntimeDomain { GOOGLE_INTERNAL, @@ -40,6 +38,7 @@ public final class RuntimeVersion { // The version of this runtime. // Automatically updated by Protobuf release process. Do not edit manually. + public static final RuntimeDomain DOMAIN = RuntimeDomain.PUBLIC; public static final int MAJOR = 3; public static final int MINOR = 26; @@ -47,6 +46,7 @@ public final class RuntimeVersion { public static final String SUFFIX = "-dev"; private static final String VERSION_STRING = versionString(MAJOR, MINOR, PATCH, SUFFIX); + private static final Logger logger = Logger.getLogger(RuntimeVersion.class.getName()); /** * Validates that the gencode version is compatible with this runtime version according to