From a0841a83323a82e3bed3d0b5f2e6ec3795f496be Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Thu, 22 Sep 2011 14:16:31 -0700 Subject: Abstract Method Error unit test and fixes. Change-Id: I14015ffd9f8adca9d0b2d90b91811c920b13716d --- test/AbstractMethod/AbstractMethod.java | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 test/AbstractMethod/AbstractMethod.java (limited to 'test/AbstractMethod/AbstractMethod.java') diff --git a/test/AbstractMethod/AbstractMethod.java b/test/AbstractMethod/AbstractMethod.java deleted file mode 100644 index f40e9a9988..0000000000 --- a/test/AbstractMethod/AbstractMethod.java +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright 2011 Google Inc. All Rights Reserved. - -abstract class AbstractMethod { - abstract void callme(); - - public AbstractMethod() { - } -} - -class B extends AbstractMethod { - void callme() { - System.out.println("B's implementation of callme"); - } -} -- cgit v1.2.3-59-g8ed1b