auto commit

This commit is contained in:
CyC2018
2018-05-03 14:08:16 +08:00
parent ba0bfeb366
commit 4c731d47bb
2 changed files with 162 additions and 152 deletions

View File

@ -233,7 +233,7 @@ public class Client {
```java
public abstract class Factory {
abstract public Product factoryMethod();
public void doSomethind() {
public void doSomething() {
Product product = factoryMethod();
// do something with the product
}