Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2021-06-11 12:27:17 +0000
committerAndrey Loskutov2021-06-11 12:55:38 +0000
commita11e70435127df3df49af0ee7babc54c6a5c63d3 (patch)
treea4c91200b626eae71d34f3337360eb8d50e805fc
parentf40c5946a22a88994be030b2031b2f4082e1d1d0 (diff)
downloadrt.equinox.p2-a11e70435127df3df49af0ee7babc54c6a5c63d3.tar.gz
rt.equinox.p2-a11e70435127df3df49af0ee7babc54c6a5c63d3.tar.xz
rt.equinox.p2-a11e70435127df3df49af0ee7babc54c6a5c63d3.zip
Slightly change Profile.toString() for better readabilityY20210611-0900I20210612-1800I20210611-2000
Change-Id: I88f09b488b9a0466618d2a5d083de9833d4efa61 Signed-off-by: Andrey Loskutov <loskutov@gmx.de> Reviewed-on: https://git.eclipse.org/r/c/equinox/rt.equinox.p2/+/181828 Tested-by: Equinox Bot <equinox-bot@eclipse.org>
-rw-r--r--bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/internal/p2/engine/Profile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/internal/p2/engine/Profile.java b/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/internal/p2/engine/Profile.java
index f813eb66a..e7dab0b35 100644
--- a/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/internal/p2/engine/Profile.java
+++ b/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/internal/p2/engine/Profile.java
@@ -407,6 +407,6 @@ public class Profile extends IndexProvider<IInstallableUnit> implements IProfile
*/
@Override
public String toString() {
- return "Profile(" + getProfileId() + '/' + getTimestamp() + ')'; //$NON-NLS-1$
+ return "Profile(" + getProfileId() + ", timestamp: " + getTimestamp() + ')'; //$NON-NLS-1$ //$NON-NLS-2$
}
}

Back to the top