hotspot/test/testlibrary_tests/ctw/Foo.java
author bpb
Fri, 06 Feb 2015 08:05:44 -0800
changeset 28847 5667388e3a79
parent 26915 ba674d5d0f77
child 46503 760f8f589de3
permissions -rw-r--r--
8072495: (fs) Path.relativize() gives incorrect result for empty path on Windows Summary: Correct handling of empty path in Windows version of relativize() Reviewed-by: alanb, dfuchs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26915
ba674d5d0f77 8025606: [TESTBUG] Move ctw-tests to /testlibrary_tests
vlivanov
parents:
diff changeset
     1
public class Foo {
ba674d5d0f77 8025606: [TESTBUG] Move ctw-tests to /testlibrary_tests
vlivanov
parents:
diff changeset
     2
  private static void staticMethod() { }
ba674d5d0f77 8025606: [TESTBUG] Move ctw-tests to /testlibrary_tests
vlivanov
parents:
diff changeset
     3
  public void method() { }
ba674d5d0f77 8025606: [TESTBUG] Move ctw-tests to /testlibrary_tests
vlivanov
parents:
diff changeset
     4
  protected Foo() { }
ba674d5d0f77 8025606: [TESTBUG] Move ctw-tests to /testlibrary_tests
vlivanov
parents:
diff changeset
     5
}