Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
c227d3ae
Commit
c227d3ae
authored
13 years ago
by
buczekp
Browse files
Options
Downloads
Patches
Plain Diff
[LMS-2442] fixed saving location
SVN: 22474
parent
73a75eeb
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
openbis/source/java/ch/systemsx/cisd/openbis/generic/server/dataaccess/db/DataDAO.java
+2
-3
2 additions, 3 deletions
...sx/cisd/openbis/generic/server/dataaccess/db/DataDAO.java
with
2 additions
and
3 deletions
openbis/source/java/ch/systemsx/cisd/openbis/generic/server/dataaccess/db/DataDAO.java
+
2
−
3
View file @
c227d3ae
...
...
@@ -583,7 +583,7 @@ final class DataDAO extends AbstractGenericEntityWithPropertiesDAO<DataPE> imple
+
SQLBuilder
.
inEntityIds
();
}
// TODO refactor - it is very similar code to the one in AbstractGenericEntityWithPropertiesDAO
// TODO refactor - it is very similar code to the one in AbstractGenericEntityWithPropertiesDAO
protected
class
DeleteDataSetsPermanentlyBatchOperation
implements
IBatchOperation
<
Long
>
{
...
...
@@ -742,14 +742,13 @@ final class DataDAO extends AbstractGenericEntityWithPropertiesDAO<DataPE> imple
public
String
toString
(
Object
value
)
{
return
value
==
null
?
""
:
delegatee
.
toString
();
return
value
==
null
?
""
:
delegatee
.
toString
(
value
);
}
};
final
String
allPermIdsAsString
=
CollectionUtils
.
abbreviate
(
permIds
,
-
1
,
toStringConverter
,
CollectionStyle
.
NO_BOUNDARY
);
sqlQueryInsertEvent
.
setParameter
(
IDENTIFIERS_PARAM
,
allPermIdsAsString
);
// FIXME handle null locations for containers
final
String
description
=
CollectionUtils
.
abbreviate
(
locations
,
-
1
,
toStringConverter
,
CollectionStyle
.
NO_BOUNDARY
);
...
...
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