From 9ece30b4251f7d25c157facb866db5eedfb6eba4 Mon Sep 17 00:00:00 2001
From: Tristan Matthews <le.businessman@gmail.com>
Date: Thu, 9 Oct 2014 22:32:04 -0400
Subject: [PATCH] swig: remove generated file from repository

---
 .../src/org/sflphone/service/IntegerMap.java  | 74 -------------------
 1 file changed, 74 deletions(-)
 delete mode 100644 sflphone-android/src/org/sflphone/service/IntegerMap.java

diff --git a/sflphone-android/src/org/sflphone/service/IntegerMap.java b/sflphone-android/src/org/sflphone/service/IntegerMap.java
deleted file mode 100644
index ad3fb6e2e..000000000
--- a/sflphone-android/src/org/sflphone/service/IntegerMap.java
+++ /dev/null
@@ -1,74 +0,0 @@
-/* ----------------------------------------------------------------------------
- * This file was automatically generated by SWIG (http://www.swig.org).
- * Version 2.0.11
- *
- * Do not make changes to this file unless you know what you are doing--modify
- * the SWIG interface file instead.
- * ----------------------------------------------------------------------------- */
-
-package org.sflphone.service;
-
-public class IntegerMap {
-  private long swigCPtr;
-  protected boolean swigCMemOwn;
-
-  protected IntegerMap(long cPtr, boolean cMemoryOwn) {
-    swigCMemOwn = cMemoryOwn;
-    swigCPtr = cPtr;
-  }
-
-  protected static long getCPtr(IntegerMap obj) {
-    return (obj == null) ? 0 : obj.swigCPtr;
-  }
-
-  protected void finalize() {
-    delete();
-  }
-
-  public synchronized void delete() {
-    if (swigCPtr != 0) {
-      if (swigCMemOwn) {
-        swigCMemOwn = false;
-        SFLPhoneserviceJNI.delete_IntegerMap(swigCPtr);
-      }
-      swigCPtr = 0;
-    }
-  }
-
-  public IntegerMap() {
-    this(SFLPhoneserviceJNI.new_IntegerMap__SWIG_0(), true);
-  }
-
-  public IntegerMap(IntegerMap arg0) {
-    this(SFLPhoneserviceJNI.new_IntegerMap__SWIG_1(IntegerMap.getCPtr(arg0), arg0), true);
-  }
-
-  public long size() {
-    return SFLPhoneserviceJNI.IntegerMap_size(swigCPtr, this);
-  }
-
-  public boolean empty() {
-    return SFLPhoneserviceJNI.IntegerMap_empty(swigCPtr, this);
-  }
-
-  public void clear() {
-    SFLPhoneserviceJNI.IntegerMap_clear(swigCPtr, this);
-  }
-
-  public int get(String key) {
-    return SFLPhoneserviceJNI.IntegerMap_get(swigCPtr, this, key);
-  }
-
-  public void set(String key, int x) {
-    SFLPhoneserviceJNI.IntegerMap_set(swigCPtr, this, key, x);
-  }
-
-  public void del(String key) {
-    SFLPhoneserviceJNI.IntegerMap_del(swigCPtr, this, key);
-  }
-
-  public boolean has_key(String key) {
-    return SFLPhoneserviceJNI.IntegerMap_has_key(swigCPtr, this, key);
-  }
-
-}
-- 
GitLab