Skip to content

Commit

Permalink
Bump Library REVISION to 4
Browse files Browse the repository at this point in the history
That should restart the git tags suffix from *r3z to *r4a
  • Loading branch information
akurtakov committed Nov 9, 2023
1 parent 5369677 commit 9a71c28
Showing 1 changed file with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,15 @@
*******************************************************************************/
package org.eclipse.swt.internal;

import java.io.*;
import java.net.*;
import java.nio.file.*;
import java.util.jar.*;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.JarURLConnection;
import java.net.URL;
import java.net.URLConnection;
import java.nio.file.Files;
import java.nio.file.StandardCopyOption;
import java.util.jar.Attributes;

public class Library {

Expand All @@ -35,7 +40,7 @@ public class Library {
/**
* SWT revision number (must be >= 0)
*/
static int REVISION = 3;
static int REVISION = 4;

/**
* The JAVA and SWT versions
Expand Down

0 comments on commit 9a71c28

Please sign in to comment.