A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / BufferCache.java
index 7413c26..a923a82 100644 (file)
@@ -17,34 +17,38 @@ import net.sourceforge.phpdt.internal.core.util.LRUCache;
  * An LRU cache of <code>IBuffers</code>.
  */
 public class BufferCache extends OverflowingLRUCache {
-/**
- * Constructs a new buffer cache of the given size.
- */
-public BufferCache(int size) {
-       super(size);
-}
-/**
- * Constructs a new buffer cache of the given size.
- */
-public BufferCache(int size, int overflow) {
-       super(size, overflow);
-}
-/**
- * Returns true if the buffer is successfully closed and
- * removed from the cache, otherwise false.
- *
- * <p>NOTE: this triggers an external removal of this buffer
- * by closing the buffer.
- */
-protected boolean close(LRUCacheEntry entry) {
-       IBuffer buffer= (IBuffer) entry._fValue;
-       if (buffer.hasUnsavedChanges()) {
-               return false;
-       } else {
-               buffer.close();
-               return true;
+       /**
+        * Constructs a new buffer cache of the given size.
+        */
+       public BufferCache(int size) {
+               super(size);
        }
-}
+
+       /**
+        * Constructs a new buffer cache of the given size.
+        */
+       public BufferCache(int size, int overflow) {
+               super(size, overflow);
+       }
+
+       /**
+        * Returns true if the buffer is successfully closed and removed from the
+        * cache, otherwise false.
+        * 
+        * <p>
+        * NOTE: this triggers an external removal of this buffer by closing the
+        * buffer.
+        */
+       protected boolean close(LRUCacheEntry entry) {
+               IBuffer buffer = (IBuffer) entry._fValue;
+               if (buffer.hasUnsavedChanges()) {
+                       return false;
+               } else {
+                       buffer.close();
+                       return true;
+               }
+       }
+
        /**
         * Returns a new instance of the reciever.
         */