Created
July 28, 2012 22:09
-
-
Save mplacona/3194981 to your computer and use it in GitHub Desktop.
ColdFusion (Java null)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Returns a Java null from ColdFusion | |
function createJavaNull(){ | |
var vector = CreateObject("java", "java.util.Vector"); | |
vector.setSize(1); | |
return vector.get(0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment