You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2016/03/15 15:44:37 UTC

[1/2] jena git commit: Reformat POM to remove tabs.

Repository: jena
Updated Branches:
  refs/heads/master 47fa7e5c0 -> c30a340e0


Reformat POM to remove tabs.

Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/0932852f
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/0932852f
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/0932852f

Branch: refs/heads/master
Commit: 0932852f67e8a2d157fa85cb82b92bd166ac7f51
Parents: 47fa7e5
Author: Andy Seaborne <an...@apache.org>
Authored: Tue Mar 15 11:15:19 2016 +0000
Committer: Andy Seaborne <an...@apache.org>
Committed: Tue Mar 15 11:15:19 2016 +0000

----------------------------------------------------------------------
 jena-sdb/pom.xml | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/0932852f/jena-sdb/pom.xml
----------------------------------------------------------------------
diff --git a/jena-sdb/pom.xml b/jena-sdb/pom.xml
index b55afca..c025b31 100644
--- a/jena-sdb/pom.xml
+++ b/jena-sdb/pom.xml
@@ -180,24 +180,24 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-assembly-plugin</artifactId>
-	<configuration>
-	  <tarLongFileMode>gnu</tarLongFileMode>    
-	</configuration>
+        <configuration>
+          <tarLongFileMode>gnu</tarLongFileMode>    
+        </configuration>
         <executions>
           <execution>
             <id>create-distribution</id>
             <phase>package</phase>
             <goals><goal>single</goal></goals>
-	    <configuration>
-	      <descriptors>
-		<descriptor>assembly.xml</descriptor>
-	      </descriptors>
-	      <tarLongFileFormat>gnu</tarLongFileFormat>
-	    </configuration>
+            <configuration>
+              <descriptors>
+                <descriptor>assembly.xml</descriptor>
+              </descriptors>
+              <tarLongFileFormat>gnu</tarLongFileFormat>
+            </configuration>
           </execution>
         </executions>
       </plugin>
-
+      
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-resources-plugin</artifactId>


[2/2] jena git commit: Override fillInStacktrace for ExprUnstable.

Posted by an...@apache.org.
Override fillInStacktrace for ExprUnstable.

Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/c30a340e
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/c30a340e
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/c30a340e

Branch: refs/heads/master
Commit: c30a340e067b6fd94e2abae6ebd3f55b4155bffa
Parents: 0932852
Author: Andy Seaborne <an...@apache.org>
Authored: Tue Mar 15 11:15:47 2016 +0000
Committer: Andy Seaborne <an...@apache.org>
Committed: Tue Mar 15 11:15:47 2016 +0000

----------------------------------------------------------------------
 .../src/main/java/org/apache/jena/sparql/expr/ExprLib.java    | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/c30a340e/jena-arq/src/main/java/org/apache/jena/sparql/expr/ExprLib.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/main/java/org/apache/jena/sparql/expr/ExprLib.java b/jena-arq/src/main/java/org/apache/jena/sparql/expr/ExprLib.java
index ac7f1a5..fc5e99d 100644
--- a/jena-arq/src/main/java/org/apache/jena/sparql/expr/ExprLib.java
+++ b/jena-arq/src/main/java/org/apache/jena/sparql/expr/ExprLib.java
@@ -213,5 +213,10 @@ public class ExprLib
         }
     } ;
     
-    private static class ExprUnstable extends ExprException {}
+    private static class ExprUnstable extends ExprException {
+        // Filling in the stack trace is the expensive part of
+        // an exception but we don't need it. 
+        @Override
+        public Throwable fillInStackTrace() { return this ; }
+    }
 }