From 94e9037522922b67e8af412b4cfe476f5e991118 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 17 Feb 2015 23:00:35 +0000
Subject: [PATCH] AutoRefactor: fix modifiers usage
---
opendj-server-legacy/src/main/java/org/opends/server/util/StaticUtils.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/util/StaticUtils.java b/opendj-server-legacy/src/main/java/org/opends/server/util/StaticUtils.java
index be251d6..f9de846 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/util/StaticUtils.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/util/StaticUtils.java
@@ -3474,7 +3474,7 @@
* indicates that the file is in use by this or another
* application.
*/
- static public void renameFile(File fileToRename, File target)
+ public static void renameFile(File fileToRename, File target)
throws IOException {
if (fileToRename != null && target != null)
{
@@ -3792,7 +3792,7 @@
* @throws ParseException if there was a problem converting the string to
* a <code>Date</code>.
*/
- static public Date parseDateTimeString(String timeStr) throws ParseException
+ public static Date parseDateTimeString(String timeStr) throws ParseException
{
Date dateTime = null;
if (timeStr != null)
@@ -3834,7 +3834,7 @@
* @param date to format; null if <code>date</code> is null
* @return string representation of the date
*/
- static public String formatDateTimeString(Date date)
+ public static String formatDateTimeString(Date date)
{
String timeStr = null;
if (date != null)
--
Gitblit v1.10.0