Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiraj Modi2021-02-02 10:48:10 +0000
committerNiraj Modi2021-02-03 10:30:58 +0000
commitb341a11791ba136486c2c2c40b4a3117119645b8 (patch)
tree7b05f739de87efd499f99c06d23d83f15db85d5a
parent08043e5ebe5aff4292a8e861584252a2200e95e1 (diff)
downloadeclipse.platform.swt-b341a11791ba136486c2c2c40b4a3117119645b8.tar.gz
eclipse.platform.swt-b341a11791ba136486c2c2c40b4a3117119645b8.tar.xz
eclipse.platform.swt-b341a11791ba136486c2c2c40b4a3117119645b8.zip
Bug 570838 - Fix invalid URL in Snippet327
Change-Id: I75bd7c169e90cd4630ee990b45dda7cf7ec82e1a Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com>
-rw-r--r--examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet327.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet327.java b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet327.java
index a2a325b15e..93480d0f94 100644
--- a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet327.java
+++ b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet327.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2009, 2017 IBM Corporation and others.
+ * Copyright (c) 2009, 2020 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -26,7 +26,7 @@ import org.eclipse.swt.widgets.*;
public class Snippet327 {
- final static String PREAMBLE = "SNIPPET327LINK";
+ final static String PREAMBLE = "https://git.eclipse.org/c/platform/eclipse.platform.swt.git/log/?ofs=";
public static void main(String[] args) {
Display display = new Display();

Back to the top