[Mulgara-svn] r164 - trunk/src/jar/resolver/java/org/mulgara/resolver
pag at mulgara.org
pag at mulgara.org
Wed Feb 7 16:34:19 UTC 2007
Author: pag
Date: 2007-02-07 10:34:18 -0600 (Wed, 07 Feb 2007)
New Revision: 164
Modified:
trunk/src/jar/resolver/java/org/mulgara/resolver/GlobalizedAnswer.java
Log:
fixed formatting
Modified: trunk/src/jar/resolver/java/org/mulgara/resolver/GlobalizedAnswer.java
===================================================================
--- trunk/src/jar/resolver/java/org/mulgara/resolver/GlobalizedAnswer.java 2007-01-23 22:40:11 UTC (rev 163)
+++ trunk/src/jar/resolver/java/org/mulgara/resolver/GlobalizedAnswer.java 2007-02-07 16:34:18 UTC (rev 164)
@@ -100,8 +100,7 @@
if (logger.isDebugEnabled()) {
try {
logger.debug("Globalizing " + tuples.getRowCount() + " rows");
- }
- catch (TuplesException e) {
+ } catch (TuplesException e) {
logger.debug("Globalizing indeterminate number of rows");
}
}
@@ -115,8 +114,7 @@
// so make sure our tuples are initialized
try {
this.tuples.beforeFirst();
- }
- catch (TuplesException e) {
+ } catch (TuplesException e) {
logger.warn("Unable to reset tuples", e);
}
}
@@ -184,8 +182,7 @@
try {
long l = tuples.getColumnValue(column);
return (l == Tuples.UNBOUND) ? null : resolverSession.globalize(l);
- }
- catch (GlobalizeException e) {
+ } catch (GlobalizeException e) {
throw new TuplesException("Couldn't globalize column " + column, e);
}
}
@@ -199,8 +196,7 @@
GlobalizedAnswer cloned;
try {
cloned = (GlobalizedAnswer)super.clone();
- }
- catch (CloneNotSupportedException e) {
+ } catch (CloneNotSupportedException e) {
throw new Error(getClass() + " must support cloning", e);
}
assert cloned != null;
More information about the Mulgara-svn
mailing list