Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
erwan committed Oct 11, 2010
1 parent 9e52636 commit 5547250
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion framework/src/play/CorePlugin.java
Expand Up @@ -279,7 +279,7 @@ static ThreadGroup getRootThread() {

@Override
public void enhance(ApplicationClass applicationClass) throws Exception {
Class[] enhancers = new Class[]{
Class<?>[] enhancers = new Class[]{
SigEnhancer.class,
ControllersEnhancer.class,
MailerEnhancer.class,
Expand Down
2 changes: 1 addition & 1 deletion framework/src/play/db/Model.java
Expand Up @@ -36,7 +36,7 @@ public static interface Choices {
public static interface Factory {

public String keyName();
public Class keyType();
public Class<?> keyType();
public Object keyValue(Model m);
public Model findById(Object id);
public List<Model> fetch(int offset, int length, String orderBy, String orderDirection, List<String> properties, String keywords, String where);
Expand Down
2 changes: 0 additions & 2 deletions framework/src/play/server/PlayHandler.java
Expand Up @@ -33,12 +33,10 @@

import java.io.*;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
import java.net.URLDecoder;
import java.net.URLEncoder;
import java.text.ParseException;
import java.util.*;
import javax.mail.internet.InternetAddress;

import play.data.validation.Validation;

Expand Down

0 comments on commit 5547250

Please sign in to comment.