Skip to content

Commit

Permalink
Internal change.
Browse files Browse the repository at this point in the history
RELNOTES=n/a
PiperOrigin-RevId: 553178053
  • Loading branch information
cpovirk authored and Google Java Core Libraries committed Aug 2, 2023
1 parent 36942e3 commit 110c207
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* Copyright (C) 2023 The Guava Authors
*
* 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.google.common.base;

/** Class containing an unannotated Java method for use from {@code OptionalExtensionsTest}. */
final class UnannotatedJavaClass {
static Object getNull() {
return null;
}

private UnannotatedJavaClass() {}
}
26 changes: 26 additions & 0 deletions guava-tests/test/com/google/common/base/UnannotatedJavaClass.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* Copyright (C) 2023 The Guava Authors
*
* 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.google.common.base;

/** Class containing an unannotated Java method for use from {@code OptionalExtensionsTest}. */
final class UnannotatedJavaClass {
static Object getNull() {
return null;
}

private UnannotatedJavaClass() {}
}

0 comments on commit 110c207

Please sign in to comment.