Hello guys,
I have upgraded my Netbeans from 6.7 to 6.8 and the very same Lift code started
to report some errors. The code compiles correctly from the command line, but
it reports error in the GUI. One of the errors is the following:
This method:
def dispatch: LiftRules.DispatchPF = {
case r...@req("api" :: "feed":: "getNewSources" :: Nil, "", PutRequest)
=>
() => getNewSources(r)
case r...@req("api" :: "feed":: "getNewFeedsPerSource" :: Nil, "",
PutRequest) =>
() => getNewFeedsPerSource(r)
case r...@req("api" :: "feed" :: "setNewSource" :: Nil, "", PutRequest)
=>
() => setNewSource(r)
case r...@req("api" :: "feed" :: "setNewFeedEntries" :: Nil, "",
PutRequest) =>
() => setNewFeedEntries(r)
}
Reports:
missing parameter type for expanded function
As I say, the code complies and run perfectly from Maven in the command line.
Does anybody have similar issues with Netbeans 6.8?
Thanks in advance,
GA
--
You received this message because you are subscribed to the Google Groups
"Lift" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/liftweb?hl=en.