Author: tfischer
Date: Sun Nov 4 21:57:18 2012
New Revision: 1405645
URL: http://svn.apache.org/viewvc?rev=1405645&view=rev
Log:
fix typo in exception message
Modified:
db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/map/TableMap.java
Modified:
db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/map/TableMap.java
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/map/TableMap.java?rev=1405645&r1=1405644&r2=1405645&view=diff
==============================================================================
---
db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/map/TableMap.java
(original)
+++
db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/map/TableMap.java
Sun Nov 4 21:57:18 2012
@@ -691,12 +691,12 @@ public class TableMap implements Seriali
if (result.isEmpty())
{
throw new TorqueException("getPrimaryKey(): Table " + tableName
- + "has no primary key.");
+ + " has no primary key.");
}
if (result.size() > 1)
{
throw new TorqueException("getPrimaryKey(): Table " + tableName
- + "has more than one primary key.");
+ + " has more than one primary key.");
}
return result.iterator().next();
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]