commit | 54239e19550d937e2904351257e761440cd07cfd | [log] [tgz] |
---|---|---|
author | buyingyi <buyingyi@eaa15691-b419-025a-1212-ee371bd00084> | Tue May 22 08:07:59 2012 +0000 |
committer | buyingyi <buyingyi@eaa15691-b419-025a-1212-ee371bd00084> | Tue May 22 08:07:59 2012 +0000 |
tree | a57b2d9e0b31a76a672c6f29fb1c2da2fd6ee66b | |
parent | 47c0ec856f29fc91c1cd999db687db53e0f8381f [diff] |
address Vinayak's comments git-svn-id: https://asterixdb.googlecode.com/svn/branches/asterix_opentype@344 eaa15691-b419-025a-1212-ee371bd00084
diff --git a/asterix-om/src/main/java/edu/uci/ics/asterix/om/typecomputer/base/TypeComputerUtilities.java b/asterix-om/src/main/java/edu/uci/ics/asterix/om/typecomputer/base/TypeComputerUtilities.java index db06e38..2c7ff10 100644 --- a/asterix-om/src/main/java/edu/uci/ics/asterix/om/typecomputer/base/TypeComputerUtilities.java +++ b/asterix-om/src/main/java/edu/uci/ics/asterix/om/typecomputer/base/TypeComputerUtilities.java
@@ -37,8 +37,8 @@ public static IAType getRequiredType(AbstractFunctionCallExpression expr) { Object[] type = expr.getOpaqueParameters(); if (type != null) { - IAType recordType = (IAType) type[0]; - return recordType; + IAType returnType = (IAType) type[0]; + return returnType; } else return null; } @@ -46,8 +46,8 @@ public static IAType getInputType(AbstractFunctionCallExpression expr) { Object[] type = expr.getOpaqueParameters(); if (type != null) { - IAType recordType = (IAType) type[1]; - return recordType; + IAType returnType = (IAType) type[1]; + return returnType; } else return null; }