• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package com.uber.mylib;
2
3import javax.annotation.Nullable;
4
5/**
6 * A sample class.
7 */
8public class MyClass {
9
10    static void log(Object x) {
11        System.out.println(x.toString());
12    }
13
14    static void foo() {
15        log(null);
16    }
17}
18