Skip to content

Commit

Permalink
Internal version changes
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 627823713
  • Loading branch information
protobuf-github-bot authored and Copybara-Service committed Apr 24, 2024
1 parent 59d8afd commit 0f0c3b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Expand Up @@ -38,7 +38,6 @@ public enum RuntimeDomain {
public static final String SUFFIX = OSS_SUFFIX;

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
Expand Down
Expand Up @@ -8,8 +8,10 @@
package com.google.protobuf;

import static com.google.common.truth.Truth.assertThat;
import static java.util.logging.Level.WARNING;
import static org.junit.Assert.assertThrows;

import java.util.logging.Logger;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
Expand Down
1 change: 1 addition & 0 deletions python/google/protobuf/internal/runtime_version_test.py
Expand Up @@ -65,6 +65,7 @@ def test_same_version_allowed(self):
)

def test_newer_runtime_version_allowed(self):

runtime_version.ValidateProtobufRuntimeVersion(
runtime_version.DOMAIN,
runtime_version.MAJOR,
Expand Down

0 comments on commit 0f0c3b1

Please sign in to comment.