From 897e3fa8aff7f2c3308fa6232a6719081db9adc3 Mon Sep 17 00:00:00 2001 From: Mitya Lyubarskiy Date: Tue, 28 Jan 2020 03:05:45 -0800 Subject: [PATCH] Remove FB-ONLY from publicly visible files Summary: These was not intended to be FB-ONLY Reviewed By: jvillard Differential Revision: D19598588 fbshipit-source-id: 6580dac65 --- infer/src/scuba/Scuba.ml | 2 -- infer/src/scuba/Scuba.mli | 2 -- infer/src/scuba/ScubaLogging.ml | 1 - infer/src/scuba/ScubaLogging.mli | 2 -- 4 files changed, 7 deletions(-) diff --git a/infer/src/scuba/Scuba.ml b/infer/src/scuba/Scuba.ml index 56a17266e..9f006cc83 100644 --- a/infer/src/scuba/Scuba.ml +++ b/infer/src/scuba/Scuba.ml @@ -5,8 +5,6 @@ * LICENSE file in the root directory of this source tree. *) -(* FB-ONLY *) - open! IStd module SMap = Map.Make (String) diff --git a/infer/src/scuba/Scuba.mli b/infer/src/scuba/Scuba.mli index 07acfda7b..a5e30905c 100644 --- a/infer/src/scuba/Scuba.mli +++ b/infer/src/scuba/Scuba.mli @@ -7,8 +7,6 @@ open! IStd -(* FB-ONLY *) - (** Low-level Scuba logging functionality. Provides functionality to log anything to any scuba table. (Note that Scuba is a schema-free storage, so it won't require any changes). Don't use this module directly for logging to tables with known structure. Use high-level functions that diff --git a/infer/src/scuba/ScubaLogging.ml b/infer/src/scuba/ScubaLogging.ml index 949e0f659..6521534da 100644 --- a/infer/src/scuba/ScubaLogging.ml +++ b/infer/src/scuba/ScubaLogging.ml @@ -4,7 +4,6 @@ * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. *) -(* FB-ONLY *) (* * Utilities to log in "infer_events" key-value scuba table. diff --git a/infer/src/scuba/ScubaLogging.mli b/infer/src/scuba/ScubaLogging.mli index 6988838e9..9f7559b21 100644 --- a/infer/src/scuba/ScubaLogging.mli +++ b/infer/src/scuba/ScubaLogging.mli @@ -9,8 +9,6 @@ open! IStd -(* FB-ONLY *) - (** Functionality for logging into "infer_events" Scuba table. The table is organized in form of key-value pairs.