-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d86b759
commit 71bc823
Showing
7 changed files
with
72 additions
and
1 deletion.
There are no files selected for viewing
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
6 changes: 6 additions & 0 deletions
6
src/test/resources/com/cflint/tests/UnusedVariable/cookie_339.cfc
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<cfcomponent> | ||
<cffunction name="foo"> | ||
<cfset var sRememberUserCookieKey = getRememberUserLoginCookieName()> | ||
<cfcookie name="#sRememberUserCookieKey#" value="#sCookieValue#" expires="#sExpirePeriod#"> | ||
</cffunction> | ||
</cfcomponent> |
5 changes: 5 additions & 0 deletions
5
src/test/resources/com/cflint/tests/UnusedVariable/cookie_339.expected.txt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ { | ||
"totalfiles" : 0 | ||
}, { | ||
"totalsize" : 0 | ||
} ] |
6 changes: 6 additions & 0 deletions
6
src/test/resources/com/cflint/tests/UnusedVariable/location_339.cfc
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<cfcomponent> | ||
<cffunction name="foo"> | ||
<cfset var sCoreURL = stContens.sCoreURL> | ||
<cflocation url="#sCoreURL#contens/index.cfm#sLoginParams#" addtoken="No"> | ||
</cffunction> | ||
</cfcomponent> |
5 changes: 5 additions & 0 deletions
5
src/test/resources/com/cflint/tests/UnusedVariable/location_339.expected.txt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ { | ||
"totalfiles" : 0 | ||
}, { | ||
"totalsize" : 0 | ||
} ] |
6 changes: 6 additions & 0 deletions
6
src/test/resources/com/cflint/tests/UnusedVariable/loop_list_339.cfc
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<cfcomponent> | ||
<cffunction name="foo"> | ||
<cfset var lLoginURLParams = stContens.security.lLoginURLParams> | ||
<cfloop list="#lLoginURLParams#" index="sParam"> | ||
</cffunction> | ||
</cfcomponent> |
5 changes: 5 additions & 0 deletions
5
src/test/resources/com/cflint/tests/UnusedVariable/loop_list_339.expected.txt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ { | ||
"totalfiles" : 0 | ||
}, { | ||
"totalsize" : 0 | ||
} ] |