12 lines
222 B
Java
12 lines
222 B
Java
package com.iluwatar;
|
|
|
|
public class PoisonPotion implements Potion {
|
|
|
|
@Override
|
|
public void drink() {
|
|
System.out.println("Urgh! This is poisonous. (Potion="
|
|
+ System.identityHashCode(this) + ")");
|
|
}
|
|
|
|
}
|