Skip to content

Commit

Permalink
don't lower case the engine name
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Nov 18, 2011
1 parent fefbf5d commit 63f3cbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -104,7 +104,7 @@ public static ISymmetricEngine findEngineByUrl(String url) {
*/
public static ISymmetricEngine findEngineByName(String name) {
if (registeredEnginesByName != null && name != null) {
return registeredEnginesByName.get(name.toLowerCase());
return registeredEnginesByName.get(name);
} else {
return null;
}
Expand Down
Expand Up @@ -1115,7 +1115,7 @@ public void setStreamingResultsFetchSize(int streamingResultsFetchSize) {
}

public String getEngineName() {
return parameterService.getString(ParameterConstants.ENGINE_NAME).toLowerCase();
return parameterService.getString(ParameterConstants.ENGINE_NAME);
}

public String getTablePrefix() {
Expand Down

0 comments on commit 63f3cbd

Please sign in to comment.