Created
October 23, 2010 22:30
-
-
Save searls/642773 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Before | |
public void feelDirty() { | |
target = new MyActionSupportSubclass() { | |
@Override public String getText(String aTextName) { | |
return aTextName; | |
} | |
@Override public String getText(String key, String[] args) { | |
return key + ":" + StringUtils.join(args, ','); | |
} | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment