Skip to content

Commit 8cb71d9

Browse files
committed
Move Nullable to annocation package
1 parent e261c59 commit 8cb71d9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

msgpack-core/src/main/java/org/msgpack/core/Preconditions.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
*/
3232
package org.msgpack.core;
3333

34+
import org.msgpack.core.annotations.Nullable;
3435
import org.msgpack.core.annotations.VisibleForTesting;
3536

3637
/**

msgpack-core/src/main/java/org/msgpack/core/Nullable.java renamed to msgpack-core/src/main/java/org/msgpack/core/annotations/Nullable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515
//
16-
package org.msgpack.core;
16+
package org.msgpack.core.annotations;
1717

1818
/**
1919
* Annotates a field which can be null
2020
*/
21-
@interface Nullable
21+
public @interface Nullable
2222
{
2323
}

0 commit comments

Comments
 (0)