minor name change

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3938 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
dolby-oss 2010-09-20 15:47:19 +00:00
parent 59bdaf6d27
commit 431c5510f3
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
function Obj(x) {
var state = x;
this.set = function set(x) { state = x; };
this.set = function setit(x) { state = x; };
this.get = function get() { return state; };
this.get = function getit() { return state; };
};