Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WebGUI
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kieker
WebGUI
Commits
74777bcd
Commit
74777bcd
authored
12 years ago
by
Nils Christian Ehmke
Browse files
Options
Downloads
Patches
Plain Diff
Removed a bug which occurred for invalid projects.
parent
f7243b4c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/CurrentWorkSpaceProjectBean.java
+11
-8
11 additions, 8 deletions
...ker/webgui/beans/session/CurrentWorkSpaceProjectBean.java
with
11 additions
and
8 deletions
Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/CurrentWorkSpaceProjectBean.java
+
11
−
8
View file @
74777bcd
...
@@ -131,14 +131,17 @@ public final class CurrentWorkSpaceProjectBean {
...
@@ -131,14 +131,17 @@ public final class CurrentWorkSpaceProjectBean {
// Remember the given parameters
// Remember the given parameters
this
.
project
=
project
;
this
.
project
=
project
;
this
.
projectName
=
projectName
;
this
.
projectName
=
projectName
;
// Remember the current time! This is important for the later comparison of the time stamps.
this
.
resetTimeStamp
();
if
(
this
.
project
!=
null
)
{
// Update the class loader
// Remember the current time! This is important for the later comparison of the time stamps.
this
.
reloadClassLoader
();
this
.
resetTimeStamp
();
// Add the libraries within the lib-folder to the current model
// Update the class loader
this
.
addLibrariesToModel
();
this
.
reloadClassLoader
();
// Load the available readers, filters and repositories
// Add the libraries within the lib-folder to the current model
this
.
loadToolPalette
();
this
.
addLibrariesToModel
();
// Load the available readers, filters and repositories
this
.
loadToolPalette
();
}
// Now deliver the correct navigation page
// Now deliver the correct navigation page
return
(
this
.
project
!=
null
)
?
CurrentWorkSpaceProjectBean
.
PAGE_PROJECT_WORK_SPACE
:
""
;
return
(
this
.
project
!=
null
)
?
CurrentWorkSpaceProjectBean
.
PAGE_PROJECT_WORK_SPACE
:
""
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment