From 9fdb95ca9c3c8e3524845760b81a85c7a4c81a45 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 04 Dec 2009 11:49:33 +0000
Subject: [PATCH] Drop util package: move ByteString hierarchy into top level sdk package and other "internal" classes to com.sun.*. Move messages into their own package. Clean up imports.

---
 sdk/src/com/sun/opends/sdk/util/SSLUtils.java |   10 +---------
 1 files changed, 1 insertions(+), 9 deletions(-)

diff --git a/sdk/src/org/opends/sdk/util/SSLUtils.java b/sdk/src/com/sun/opends/sdk/util/SSLUtils.java
similarity index 80%
rename from sdk/src/org/opends/sdk/util/SSLUtils.java
rename to sdk/src/com/sun/opends/sdk/util/SSLUtils.java
index a6cb1ba..1a1ba2f 100644
--- a/sdk/src/org/opends/sdk/util/SSLUtils.java
+++ b/sdk/src/com/sun/opends/sdk/util/SSLUtils.java
@@ -1,4 +1,4 @@
-package org.opends.sdk.util;
+package com.sun.opends.sdk.util;
 
 import java.security.KeyManagementException;
 import java.security.NoSuchAlgorithmException;
@@ -16,14 +16,6 @@
  */
 public class SSLUtils
 {
-  private static String PROVIDER =
-        System.getProperty("org.opends.security.provider");
-  private static String KEY_STORE =
-      System.getProperty("javax.net.ssl.keyStore");
-
-  {
-
-  }
   public static SSLContext getSSLContext(TrustManager trustManager,
                                          KeyManager keyManager)
       throws KeyManagementException, NoSuchAlgorithmException {

--
Gitblit v1.10.0