Mercurial > hg > RemoteEditor > REPSessionManager
comparison rep/optimizers/NullOptimizer.java @ 223:3680d8357429
Optimizer of REPCommand
originated from tkaito
created by kent
author | kent |
---|---|
date | Sun, 31 Aug 2008 13:06:36 +0900 |
parents | |
children | f9fa876d3539 |
comparison
equal
deleted
inserted
replaced
222:18d6a7140fa3 | 223:3680d8357429 |
---|---|
1 package rep.optimizers; | |
2 | |
3 import java.util.List; | |
4 | |
5 import rep.REPCommand; | |
6 | |
7 public class NullOptimizer extends REPCommandOptimizer { | |
8 | |
9 protected List<REPCommand> optimize0(List<REPCommand> cmdlist){ | |
10 return cmdlist; | |
11 } | |
12 | |
13 } |