[Swift-commit] r7842 - trunk/src/org/griphyn/vdl/util
    hategan at ci.uchicago.edu 
    hategan at ci.uchicago.edu
       
    Thu May  8 23:48:47 CDT 2014
    
    
  
Author: hategan
Date: 2014-05-08 23:48:47 -0500 (Thu, 08 May 2014)
New Revision: 7842
Modified:
   trunk/src/org/griphyn/vdl/util/FQN.java
Log:
a FQN constructor with no version
Modified: trunk/src/org/griphyn/vdl/util/FQN.java
===================================================================
--- trunk/src/org/griphyn/vdl/util/FQN.java	2014-05-09 04:48:06 UTC (rev 7841)
+++ trunk/src/org/griphyn/vdl/util/FQN.java	2014-05-09 04:48:47 UTC (rev 7842)
@@ -39,6 +39,10 @@
 		this.version = version;
 		this.hashCode = _hashCode();
 	}
+	
+	public FQN(String namespace, String name) {
+	    this(namespace, name, null);
+	}
 
 	public FQN(String fqn) {
 		/*
    
    
More information about the Swift-commit
mailing list